A Simple Day Trading Strategy for Beginners For ThinkOrSwim

this is how it appears on a 5m. Price action simplicity
Study this, same pattern as your example, here daily, no indicators,...just trend..,....my buy point was not really marked correctly,..it is where price broke the trend, and pulled back to support, it the corner of the two trendlines......
0WgOuwe.png
 

New Indicator: Buy the Dip

Check out our Buy the Dip indicator and see how it can help you find profitable swing trading ideas. Scanner, watchlist columns, and add-ons are included.

Download the indicator

Study this, same pattern as your example, here daily, no indicators,...just trend..,....my buy point was not really marked correctly,..it is where price broke the trend, and pulled back to support, it the corner of the two trendlines......
0WgOuwe.png
Thanks for the example. The lines you see drawn are highs and lows from each day going back 90 days. I use no indicators also. I found adding the volatility stop a good addendum to what I do.
 
Thanks for the example. The lines you see drawn are highs and lows from each day going back 90 days. I use no indicators also. I found adding the volatility stop a good addendum to what I do.
Good,..it's what I have suggested to most of these traders. You know, bypass the indicators,.....but since we are here in the indicator site,..there must be something that all find useful ,-) Volstop is extremely useful on all timeframes,...mix that with trendlines.... I would encourage anyone reading this,...... search out "Candle Bible" pdf,....and learn to read price.....
 
Good,..it's what I have suggested to most of these traders. You know, bypass the indicators,.....but since we are here in the indicator site,..there must be something that all find useful ,-) Volstop is extremely useful on all timeframes,...mix that with trendlines.... I would encourage anyone reading this,...... search out "Candle Bible" pdf,....and learn to read price.....
How do you find that this differs from Steve Nisson's candlestick books? In my own journey I also got caught up in indicators only to find eventually that simple price action trumps it all. Support and resistence are reality.
 
How do you find that this differs from Steve Nisson's candlestick books? In my own journey I also got caught up in indicators only to find eventually that simple price action trumps it all. Support and resistence are reality.
Nisson's book is vast explanation, "The Candlestick Bible," is a little pdf written by a trader who pointed out a few important candle patterns and directs a deep dive on the charts......exercises,..... deep dives are the only important exercise on anything. Someone can listen to Bigalow and his descriptions of candle patterns,...... You've digested my points, now its up to the new retailers to discover this thread....the video to knock off "years," in the curve.
 
Interesting discussion. I read Nison's book about 25 years ago and still refer to it. I keep it next to my desk, and it coincidentally is next to the most important book that I ever had, "New Concepts in Technical Analysis" by the grand master, J. Welles Wilder, Jr. Oddly, two "red" books, lol.
 
Nisson's book is vast explanation, "The Candlestick Bible," is a little pdf written by a trader who pointed out a few important candle patterns and directs a deep dive on the charts......exercises,..... deep dives are the only important exercise on anything. Someone can listen to Bigalow and his descriptions of candle patterns,...... You've digested my points, now its up to the new retailers to discover this thread....the video to knock off "years," in the curve.
Since I've read Nison's books and studied Bigalow I downloaded the pdf and will be interested to do my due diligence on it.
 
Since I've read Nison's books and studied Bigalow I downloaded the pdf and will be interested to do my due diligence on it.
Deep dive now and then can supercharge. My charts are open to deep dive all day, amazing how many patterns appear.
 
is this the book you're referring to?

bUw4oj7.png
Yes, this is the simple pdf,.... good focus on a few important candle set ups,... less involved than Bigalow, truly less involved than Nison,... but if identified with practice can change everything.
 
Yes, this is the simple pdf,.... good focus on a few important candle set ups,... less involved than Bigalow, truly less involved than Nison,... but if identified with practice can change everything.
Attached is series of simplicity,... a direction for new or experienced.....
watch these or not,.....Sharing with you I took a plunge and committed in the chat with Doug to learn options. I learned simplicity, how options enhance positions simplistically, nothing complicated, rules to implement, and simplistic trading. I found no matter what you know there is always
something another trader may share with you that can enhance your success. Forget all the referrals to title, and website, focus on the lessons.
 
Attached is series of simplicity,... a direction for new or experienced.....
watch these or not,.....Sharing with you I took a plunge and committed in the chat with Doug to learn options. I learned simplicity, how options enhance positions simplistically, nothing complicated, rules to implement, and simplistic trading. I found no matter what you know there is always
something another trader may share with you that can enhance your success. Forget all the referrals to title, and website, focus on the lessons.

I also have a copy of his EMA 34 chart indicator. Very simplistic strategy that is easy to understand and execute at a custom pace. However, I was wondering if you can find a TOS thinkscript custom scan filter that mimics his custom code definition of "34 EMA Trending Up 20 Days"? It would be very helpful to have a scan as a starting place to get particular trade ideas. Thanks in advance.
 
I also have a copy of his EMA 34 chart indicator. Very simplistic strategy that is easy to understand and execute at a custom pace. However, I was wondering if you can find a TOS thinkscript custom scan filter that mimics his custom code definition of "34 EMA Trending Up 20 Days"? It would be very helpful to have a scan as a starting place to get particular trade ideas. Thanks in advance.

I'm a newbie to thinkscript and here's my start at the custom scan filter code. Not sure what to do from here?


# (XAVGC34.20 < XAVGC34.15) AND (XAVGC34.15 < XAVGC34.10) AND (XAVGC34.10 < XAVGC34.5) AND (XAVGC34.3 < XAVGC34)

def ema1_len = 34.20;
def ema2_len = 34.15;
def ema3_len = 34.10;
def ema4_len = 34.5;
def ema5_len = 34.3;
def ema6_len = 34;

def ema1 = MovAvgExponential(length = ema1_len);
def ema2 = MovAvgExponential(length = ema2_len);
def ema3 = MovAvgExponential(length = ema3_len);
def ema4 = MovAvgExponential(length = ema4_len);
def ema5 = MovAvgExponential(length = ema5_len);
def ema6 = MovAvgExponential(length = ema6_len);

def EMA34 = If(ema1 < ema2 && ema2 < ema3 && ema3 < ema4 && ema5 < ema6, 1, 0);
 
I'm a newbie to thinkscript and here's my start at the custom scan filter code. Not sure what to do from here?


# (XAVGC34.20 < XAVGC34.15) AND (XAVGC34.15 < XAVGC34.10) AND (XAVGC34.10 < XAVGC34.5) AND (XAVGC34.3 < XAVGC34)

def ema1_len = 34.20;
def ema2_len = 34.15;
def ema3_len = 34.10;
def ema4_len = 34.5;
def ema5_len = 34.3;
def ema6_len = 34;

def ema1 = MovAvgExponential(length = ema1_len);
def ema2 = MovAvgExponential(length = ema2_len);
def ema3 = MovAvgExponential(length = ema3_len);
def ema4 = MovAvgExponential(length = ema4_len);
def ema5 = MovAvgExponential(length = ema5_len);
def ema6 = MovAvgExponential(length = ema6_len);

def EMA34 = If(ema1 < ema2 && ema2 < ema3 && ema3 < ema4 && ema5 < ema6, 1, 0);
Scan,... https://tos.mx/NRZOgEq
 
The 34 is simply pointing to a trending stock, 17, 24, 34, 50, 63 whatever timeframe you like, they have been tested....
# (XAVGC34.20 < XAVGC34.15) AND (XAVGC34.15 < XAVGC34.10) AND (XAVGC34.10 < XAVGC34.5) AND (XAVGC34.3 < XAVGC34)



def ema1_len = 34.20;

def ema2_len = 34.15;

def ema3_len = 34.10;

def ema4_len = 34.5;

def ema5_len = 34.3;

def ema6_len = 34;



def ema1 = MovAvgExponential(length = ema1_len);

def ema2 = MovAvgExponential(length = ema2_len);

def ema3 = MovAvgExponential(length = ema3_len);

def ema4 = MovAvgExponential(length = ema4_len);

def ema5 = MovAvgExponential(length = ema5_len);

def ema6 = MovAvgExponential(length = ema6_len);


Plot EMA34 = If(ema1 < ema2 && ema2 < ema3 && ema3 < ema4 && ema5 < ema6, 1, 0);
 
I stumbled upon the video and this post.... Try adding this as a custom scan script... add fiter custom edit copy paste..

Ruby:
ExpAverage(close, 34) [20] < ExpAverage(close, 34) [15] and  ExpAverage(close, 34) [15] < ExpAverage(close, 34) [10] and  ExpAverage(close, 34) [10] < ExpAverage(close, 34) [5] and  ExpAverage(close, 34) [3] < ExpAverage(close, 34)

Shared link to scan

http://tos.mx/Uej7eIC
 
Last edited:

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
472 Online
Create Post

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