Skip to content

Instantly share code, notes, and snippets.

study(shorttitle="AAFLI", title="Angle Attack Follow Line Indicator ", overlay=false, max_bars_back=1000)
//INPUTS ————————————————————————————————————————————————————————————
FL = input(title = "🔰🔰🔰🔰 FOLLOW LINE CURRENT CHART RESOLUTION 🔰🔰🔰🔰", defval = true, type = input.bool)
BBperiod = input(defval = 21, title = "Period", type = input.integer, minval = 1)
BBdeviations = input(defval = 1.00, title = "Deviations", type = input.float, minval = 0.1, step=0.05)
UseATRfilter = input(defval = true, title = "ATR Filter", type = input.bool)
ATRperiod = input(defval = 5, title = "ATR Period", type = input.integer, minval = 1)
// Tradingview.com
// @author LazyBear, xSilas, Ni6HTH4wK /non houbi edition
// Drop a line if you use or modify this code.
study(title="Godmode3.1")
n1 = input(9, "Channel Length")
n2 = input(26, "Average Length")
n3 = input(13, "Short length")
multi = input(type=bool, defval=false, title="Multi-exchange?")
src0 = hlc3
@matquykyo811
matquykyo811 / boom hunter pro
Last active March 7, 2024 04:14
boom hunter pro
title = 'Boom Hunter Pro'
stitle = 'Boom Pro'
version = ' 1.022'
indicator(title=title + version, shorttitle=stitle, overlay=false, timeframe='')
theme = 'Dark' //, "Theme:", options=["Dark", "Light"], group = "Main Settings", inline = "main")
showfib = input.bool(defval=false, title='Show Fibonacci Lines?', group='Main Settings', inline='main2')
showentry = input.bool(defval=true, title='Show Entry and Exit Points?', group='Main Settings')
square = input.bool(true, title='Square Line?', group='Main Settings')
showdboom = input.bool(true, title='Show Downward Boom Line?', group='Main Settings')
showlongs = input.bool(true, title='Show Long Entries?', group='Main Settings')