10X scans to use in TOS
Code / script to use in the stock hacker in ThinkOrSwim to scan for 10X
Scan script
See below script that can be used to make a custom scan filter in the TOS Stock or Options Hacker.
10X scans to use with TOS:
# 10x Green Bar Scan
ST_10x().Scan == 1
# 10x Red Bar Scan
ST_10x().Scan == -1
# 10x Yellow Bars Scan
ST_10x().Scan == 0
# 10x First Green Bar Scan
ST_10x().Scan == 1 and ST_10x().Scan[1] != 1
# 10x First Red Bar Scan
ST_10x().Scan == -1 and ST_10x().Scan[1] != -1
Make sure you are using only one of the above scans per filter.