Created
March 22, 2020 06:34
-
-
Save rwilkes/15c1a84712fceae96e65fcf0670544d2 to your computer and use it in GitHub Desktop.
ThinkScript: Scanner
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
# SuperTrend Scan | |
# Mobius | |
# V01.10.2015 | |
# Comment out (#) the direction NOT to use for a scan | |
input AtrMult = .70; | |
input nATR = 4; | |
input AvgType = AverageType.HULL; | |
def h = high; | |
def l = low; | |
def c = close; | |
def v = volume; | |
def ATR = MovingAverage(AvgType, TrueRange(h, c, l), nATR); | |
def UP = HL2 + (AtrMult * ATR); | |
def DN = HL2 + (-AtrMult * ATR); | |
def ST = if c < ST[1] | |
then Round(UP / tickSize(), 0) * tickSize() | |
else Round(DN / tickSize(), 0) * tickSize(); | |
#plot SuperTrendUP = if ST crosses below close then 1 else 0; | |
plot SuperTrendDN = if ST crosses above close then 1 else 0; | |
# End Code SuperTrend |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment