Scanning for Pullbacks in ThinkorSwim

kiyokaze

New member
How do I know which stocks are pulling back? Is there a scanner to help me do that in TOS? I've been using this lately to try to enter at the bottom of huge moves that last for a few weeks to a few months. It only gives a few stocks a day each scan. But after I scan I don't want to buy it instantly I want it to make a new low first or bounce off the 200 SMA. I have to just add it to my watch list and wait like a week max to see if its a good setup and then buy. What I want to know is if there's a way to scan for something that's already in this position where within the last 10 days these exact things in the scan happened but now a new low was made so then I can just buy the stock the same day I scan. Any ideas?

Gip2wMf.png


For example, usually on the day I'd want to buy the volume will actually be lower than the unusual volume that happened within the last week or so on the breakout candle. But I don't know how to combine all these things. Thanks. Basically my current scan is more of an alert to watch it rather than the exact day I should buy. So I want to make it more efficient.

be7tJkV.png


^ ok basically I need this I think. Then I can just check the charts on the results to see if it's a good time to buy right?
 
Last edited:
I think this is possible to do as a chart indicator 1st and then convert over to a scanner... What would the target be? Perhaps companies that have to complete some work before increasing in value???
 

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

I think this is possible to do as a chart indicator 1st and then convert over to a scanner... What would the target be? Perhaps companies that have to complete some work before increasing in value???

i'm not sure what you mean by chart indicator. you can create your own?
also i'm not really interested in fundamentals
this just involves riding the new trend as long as possible
i exit if rsi is below 50 / price retraces too close to the previous low or breaks under it (aligns with rsi going under 50 usually) (on daily chart)
 
Anyone heard of the 1-2-3 Pullback pattern? I've searched for this type of indicator and cannot find it. There's 1 guy claiming on youtube to have it in action but charges $800 for it, can't find it now unfortunately. Anyway, this is an actual trading theory that concentrates on trading in the direction of the 200 SMA. So if you are trending up, you only look for long positions. First it must start with a green candle (1), go up (2), pull back a little and then that bullish green candle would be (3) and where you take your long trade. So I need something like that please.

Obviously the opposite 1-2-3 on a chart trending down, then you only look for short positions.

This is for Commodities/Futures trading. I would think this can be used in Forex and stocks too. (reference: http://www.online-stock-trading-guide.com/123-reversal-pattern.html)

e36IvkF.png

g2OXhEN.png


There's an example of it happening between midnight and 1:45am Friday morning EST

0ax45Yx.png
 
Last edited by a moderator:
Not sure if this is what you're looking for.

Code:
# 1-2-3 Trend Change labels for bottom of Mobius Wolf Wave v01
# Nube 7.18.18 
plot SupportLineS3S2 = if x == HighestAll(S3PLBarOrigin)
                    then S3
                    else if x == HighestAll(S2PLBarOrigin)
                         then S2  #Parentlow
                         else Double.NaN;
SupportLineS3S2.EnableApproximation();
SupportLineS3S2.SetDefaultColor(Color.White);
SupportLineS3S2.SetLineWeight(1);
SupportLineS3S2.SetStyle(Curve.LONG_DASH);
def slopeS3S2 = (S3 - S2) /
               (HighestAll(S3PLBarOrigin) - HighestAll(S2PLBarOrigin));
plot ExtLineS3S2 = if x >= HighestAll(S2PLBarOrigin)
                then (x - HighestAll(S2PLBarOrigin)) * slopeS3S2 + S2
                else Double.NaN;
ExtLineS3S2.EnableApproximation();
ExtLineS3S2.SetDefaultColor(Color.White);
ExtLineS3S2.SetLineWeight(1);
ExtLineS3S2.SetStyle(Curve.LONG_DASH);
plot SupportLineR3R2 = if x == HighestAll(R3PHBarOrigin)
                    then R3
                    else if x == HighestAll(R2PHBarOrigin)
                         then R2  #Parentlow
                         else Double.NaN;
SupportLineR3R2.EnableApproximation();
SupportLineR3R2.SetDefaultColor(Color.White);
SupportLineR3R2.SetLineWeight(1);
SupportLineR3R2.SetStyle(Curve.LONG_DASH);
def slopeR3R2 = (R3 - R2) /
               (HighestAll(R3PHBarOrigin) - HighestAll(R2PHBarOrigin));
plot ExtLineR3R2 = if x >= HighestAll(R2PHBarOrigin)
                then (x - HighestAll(R2PHBarOrigin)) * slopeR3R2 + R2
                else Double.NaN;

ExtLineR3R2.EnableApproximation();
ExtLineR3R2.SetDefaultColor(Color.White);
ExtLineR3R2.SetLineWeight(1);
ExtLineR3R2.SetStyle(Curve.LONG_DASH);

plot bull123 = R3 > R2 &&
               S1 > ExtLineR3R2 &&
               close > S1;          
plot bear123 = S3 < S2 &&
               R1 < ExtLineS3S2 &&
               close < R1;
bull123.Hide(); 
bear123.Hide();            
AddLabel(bull123, " 1 - 2 - 3  Trend Change ", CreateColor(75,225,75));          
AddLabel(bear123, " 1 - 2 - 3 Trend Change ", CreateColor(225,75,75));
 
Not sure if this is what you're looking for.

Code:
# 1-2-3 Trend Change labels for bottom of Mobius Wolf Wave v01
# Nube 7.18.18
plot SupportLineS3S2 = if x == HighestAll(S3PLBarOrigin)
                    then S3
                    else if x == HighestAll(S2PLBarOrigin)
                         then S2  #Parentlow
                         else Double.NaN;
SupportLineS3S2.EnableApproximation();
SupportLineS3S2.SetDefaultColor(Color.White);
SupportLineS3S2.SetLineWeight(1);
SupportLineS3S2.SetStyle(Curve.LONG_DASH);
def slopeS3S2 = (S3 - S2) /
               (HighestAll(S3PLBarOrigin) - HighestAll(S2PLBarOrigin));
plot ExtLineS3S2 = if x >= HighestAll(S2PLBarOrigin)
                then (x - HighestAll(S2PLBarOrigin)) * slopeS3S2 + S2
                else Double.NaN;
ExtLineS3S2.EnableApproximation();
ExtLineS3S2.SetDefaultColor(Color.White);
ExtLineS3S2.SetLineWeight(1);
ExtLineS3S2.SetStyle(Curve.LONG_DASH);
plot SupportLineR3R2 = if x == HighestAll(R3PHBarOrigin)
                    then R3
                    else if x == HighestAll(R2PHBarOrigin)
                         then R2  #Parentlow
                         else Double.NaN;
SupportLineR3R2.EnableApproximation();
SupportLineR3R2.SetDefaultColor(Color.White);
SupportLineR3R2.SetLineWeight(1);
SupportLineR3R2.SetStyle(Curve.LONG_DASH);
def slopeR3R2 = (R3 - R2) /
               (HighestAll(R3PHBarOrigin) - HighestAll(R2PHBarOrigin));
plot ExtLineR3R2 = if x >= HighestAll(R2PHBarOrigin)
                then (x - HighestAll(R2PHBarOrigin)) * slopeR3R2 + R2
                else Double.NaN;

ExtLineR3R2.EnableApproximation();
ExtLineR3R2.SetDefaultColor(Color.White);
ExtLineR3R2.SetLineWeight(1);
ExtLineR3R2.SetStyle(Curve.LONG_DASH);

plot bull123 = R3 > R2 &&
               S1 > ExtLineR3R2 &&
               close > S1;         
plot bear123 = S3 < S2 &&
               R1 < ExtLineS3S2 &&
               close < R1;
bull123.Hide();
bear123.Hide();           
AddLabel(bull123, " 1 - 2 - 3  Trend Change ", CreateColor(75,225,75));         
AddLabel(bear123, " 1 - 2 - 3 Trend Change ", CreateColor(225,75,75));
It gives error, x is not defined.
 
@majidg The directions in the code you posted state:
# 1-2-3 Trend Change labels for bottom of Mobius Wolf Wave v01
You need to post the whole code that you added this label script to. And provide an image of the error message so someone will be able to troubleshoot the problem.

Unsure of how to upload screenshots to the forum, Here are directions.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
495 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