This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |