So a lot of us know the old adage the trend is your friend. Furthermore a lot of us would know an uptrend if we seen one, but very few of us know how to scan for an uptrending stock. For us that go long on stocks, we use several different techniques to help us decide whether or not to take a position. Some of these techniques include candlestick patterns, RSI, MACD, Stochastics, and various momentum indicators. One many of us VIPs have been playing around with great levels of success is the Buy the Dip indicator made by @BenTen
None of these techniques are infallible but they tend to work with the highest probability on uptrending stocks. I am going to share a scan with you guranteed to get you some juicy uptrending charts. You guys can do your own research on how to set this up, im just going to leave the framework here. This site has many tutorials and helps thanks to the site creator. Enjoy =)
Fyi, this is not my original idea, but formulated in large part from this site: https://www.marcellagerwerf.com/mark-minervini-trend-template-thinkorswim-scan/
None of these techniques are infallible but they tend to work with the highest probability on uptrending stocks. I am going to share a scan with you guranteed to get you some juicy uptrending charts. You guys can do your own research on how to set this up, im just going to leave the framework here. This site has many tutorials and helps thanks to the site creator. Enjoy =)
Fyi, this is not my original idea, but formulated in large part from this site: https://www.marcellagerwerf.com/mark-minervini-trend-template-thinkorswim-scan/
- Restrict the scan to the S&P 500
- Average volume > 1 million
Code:
close(“period” = AggregationPeriod.DAY) is greater than SimpleMovingAvg(“length” = 150).”SMA”
and
close(“period” = AggregationPeriod.DAY) is greater than SimpleMovingAvg(“length” = 200).”SMA”
and
SimpleMovingAvg(“length” = 150).”SMA” is greater than SimpleMovingAvg(“length” = 200).”SMA”
and
SimpleMovingAvg(“length” = 50).”SMA” is greater than SimpleMovingAvg(“length” = 150).”SMA”
and
SimpleMovingAvg(“length” = 50).”SMA” is greater than SimpleMovingAvg(“length” = 200).”SMA”
and
close(“period” = AggregationPeriod.DAY) is greater than SimpleMovingAvg(“length” = 50).”SMA”
and
close(“period” = AggregationPeriod.DAY) /
Lowest(“data” = CLOSE, “length” = 250)
is greater than 1.3
and
close(“period” = AggregationPeriod.DAY) /
Highest(“data” = close, “length” = 250) > 0.75
Last edited by a moderator: