All Collections
Indicators
FAQ
10X scans to use in TOS
10X scans to use in TOS

Code / script to use in the stock hacker in ThinkOrSwim to scan for 10X

Duncan Boggs avatar
Written by Duncan Boggs
Updated over a week ago

 

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. 

 
​  
​  

 Create a custom scan filter in TOS
https://intercom.help/simpler-trading/en/articles/3619367

Compound Breakout Tool scans to use in TOS
https://intercom.help/simpler-trading/en/articles/3620642

I can't see the volume dots for the 10x indicator on my chart in Tradestation
https://intercom.help/simpler-trading/en/articles/3291166

How to Configure a Multi-Time Frame label study on TOS
https://intercom.help/simpler-trading/en/articles/3294156

TOS - Setting up scan criteria in the Stock or Option Hacker in Thinkorswim
https://intercom.help/simpler-trading/en/articles/3575220

How do I save and find a shared scan in TOS
https://intercom.help/simpler-trading/en/articles/3348299

Credit Sniper scans to use in TOS
https://intercom.help/simpler-trading/en/articles/3620608

Did this answer your question?