Popular Day Trading Filters In ThinkOrSwim

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Price flucuations scans come in every type depending on Market Regime and Strategy.
Some of the more common ones are as follows:

MOMENTUM BREAKOUT

Code:
# Momentum Breakout
def isNewDay = GetDay() != GetDay()[1];
def dayHigh = if isNewDay then high else Max(high, dayHigh[1]);
def isHOD = close >= dayHigh;

def avgVol = Average(volume, 50);
def rVol = if avgVol > 0 then volume / avgVol else 0;
def volCond = volume > 300000;

plot scan = rVol > 3.0 and volCond and isHOD;

EMA TREND CROSS

Code:
# EMA Trend Cross
def ema8 = ExpAverage(close, 8);
def ema21 = ExpAverage(close, 21);
def vwapVal = reference VWAP();
def avgVol = Average(volume, 50);
def rVol = if avgVol > 0 then volume / avgVol else 0;

def emaCross = ema8 crosses above ema21;
def priceAboveVWAP = close > vwapVal;

plot scan = emaCross and priceAboveVWAP and rVol > 1.5;

VWAP RETEST

Code:
# VWAP Retest
def vwapVal = reference VWAP();
def avgVol = Average(volume, 50);
def rVol = if avgVol > 0 then volume / avgVol else 0;

# Price within 0.5% of VWAP
def isWithinVWAP = AbsValue(close - vwapVal) / vwapVal <= 0.005;

# Bullish Engulfing pattern
def isBullishEngulfing = close[1] < open[1] and close > open and open <= close[1] and close >= open[1];

plot scan = isWithinVWAP and isBullishEngulfing and rVol > 2.0;

MEAN REVERSION

Code:
# Mean Reversion
def rsiVal = RSI(14);
def avgVol = Average(volume, 50);
def isVolSurge = volume > (2.0 * avgVol);
def vwapVal = reference VWAP();

# Price is 3%+ below VWAP
def isOversoldVWAP = close <= (vwapVal * 0.97);

plot scan = rsiVal < 25 and isVolSurge and isOversoldVWAP;

@Jesusr123
Never runs scans against the Universe of Stocks. Make sure to define the characteristics that match your strategy first.
VIP-ers can customize these Scan Profiles:
https://usethinkscript.com/threads/stock-profiles-based-on-float-and-institutional-interest.22681/
 
Well, many times the alerts come up at the end of the stock price movement.. I mean, the alert comes up when the stock price is high. So, I would like see theses alert earlier.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
1636 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top