Stock Scanners (703)

Votes
Answers
Views
Question
0
votes
1
answer
181
views
asked 4 years ago by
Category: Stock Scanners
Hello Peter, Can you convert this study for me to a scan? input SMAPeriod1 = 20; input SMAPeriod = 50; input price = close; def na = double.nan; plot fastema = ExpAverage(price, SMAPeriod1); plot slowema = Average(price, SMAPeriod); def crossover = i...
0
votes
1
answer
96
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I'm creating a strategy where the StochRSI(14) value is crossing above 20SMA as an entry point and StochRSI(14) crossing below 20SMA as an exit point. See the image attached and I have tried this for few other stocks and looks promising. I w...
0
votes
1
answer
65
views
asked 4 years ago by
Category: Stock Scanners
Hello again Pete, I have a question regarding a simple scan. Im trying to filter for an uptrend by stating different Sma and vwap be higher than they were X amount of bars ago.   vwap>vwap [x]...    and so forth with a 9 sma and 20 sma, and vwap.....
0
votes
1
answer
125
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I am reviewing the MACD MTF you created in a previous post. The link to the post is: https://www.hahn-tech.com/thinkorswim-mtf-macd-scan/ I am trying to slightly modify the scan to search for MACD MTF signals ONLY when the initial green hist...
0
votes
1
answer
130
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, Hope all is safe and well. I am trying to build a scan that filters stock by the ATR where the current ATR(14) is less than 50% of it's one six months high. Many thanks for your time and help. Regards Ali
0
votes
1
answer
77
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, I'm looking for a scanner that can search for price close above lowest EMA or SMA but can also be above both. We can use EMA & SMA length values of 8. So an example: Ticker XYZ 8EMA ( $2.37 ) Close ( $2.35 ) 8SMA ( $2.28 ) The scanner wo...
0
votes
1
answer
126
views
asked 3 years ago by
Category: Stock Scanners
Mr. Hann,  I have run into a bit of an issue with my scan.  What I want is that over the past 3 days all 3 days add up to 100% extension.  I am getting tickers that are up only 50% over the previous 3 days.   I also have a volume requirement that the...
0
votes
1
answer
343
views
asked 3 years ago by
Category: Stock Scanners
hello mr hahn. can i run a scan like this stock (ALT) where i ca scan where the stock is in the green zone. and also in the red zone $35 red zone and $11 green zone
0
votes
1
answer
227
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, I have found this MACD crossover study for CHART but I am trying to apply for SCAN but somehow its not working. I have followed all your step provided in the forum but I still getting a error about "Exactly one plot expected" on the bottom o...
0
votes
1
answer
918
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, Your TOS snippet below is to scan TTM Squeeze for the 2nd yellow bar after 2 or more red bars. Can you help me edit it to scan 2nd blue bar after 2 or more cyan bars? Thanks for any help! input price = CLOSE; input length = 20; input nK = 1....