Questions for tag "scan" (10)

Votes
Answers
Views
Question
1
vote
2
answers
3432
views
asked 7 years ago by
Category: Stock Scanners
Hello everyone! I believe this could be easy but I am having trouble creating/modifying a script/scan that looks for stocks that meet the following criteria. Equities that Gap up, reverse to PDClose AND/OR Gap down, reverse to PDClose. The setup is s...
1
vote
3
answers
3106
views
asked 8 years ago by
Category: Stock Scanners
A viewer asks: For the scalper I see very little code in the thinkscript itself. How would I go about conditioning my scan so that it checks if the previous bar had a scalper alert. So adding one more condition like "and Salper[1] == yes?" if you kno...
0
votes
4
answers
1739
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete!  I'm trying to run a Gap down scan on TOS with the same format that Barchart offers.  I know that i can find the gap downs on TOS but i'm trying to find the size of the gap and can't seem to find it when i run it on TOS.  Can you please help...
0
votes
2
answers
1601
views
asked 7 years ago by
Category: Stock Scanners
I have recently added the following study that plots IV rank (credit to TechnoloTRADE: https://www.youtube.com/channel/UCcT7tlaJZr6mpM8LMRnq3KQ): declare lower; declare hide_on_intraday; #IVPercentile def vol = imp_volatility(); input DisplayIVPercen...
1
vote
2
answers
1466
views
asked 5 years ago by
Category: Stock Scanners
There is some good news, we can debug scan code by using the plot statement to let the scan engine test a condition. We see that the condition is true if the results are the full set of symbols. Example: <pre> input offset = 0; def sum = 1; plo...
0
votes
4
answers
1420
views
asked 6 years ago by
Category: Stock Scanners
I am willing to give a big donation for a scan that can capture pretty much the data pulled on the link below on any giving trading session https://www.nasdaqtrader.com/trader.aspx?id=TradeHalts   Specifically stocks that are halted on   Co...
1
vote
4
answers
866
views
asked 6 years ago by
Category: Watch Lists
Peter, Greetings and excellent work on any of the information here and your scans. I am using a Scan base Watchlist and I get lots of alerts. BUT they all are sorted based on Price etc . I am looking to sort my watchlist based on time when alert came...
0
votes
1
answer
656
views
asked 4 years ago by
Category: Watch Lists
Hey Pete, I was watching your Thinkorswim Alert High Low Video on youtube and was wondering if this can be Applied into a Watchlist / Scan. Say I scan in the S&P500 and and every time a ticker in the SP500 hits an intraday high it adds it in the ...
0
votes
1
answer
312
views
asked 2 years ago by
Category: Stock Scanners
Hi, Pete - new to the site, and am loving it, thanks so much for your contributions to the community! I recently came across the following excellent post and instructions regarding a TOS alert for TTM Wave C crossing zero: https://www.hahn-tech.com/a...
0
votes
1
answer
51
views
asked 9 months ago by
Category: Stock Scanners
Long Version: I want to make a scan study where VWAP weekly is greater than VWAP monthly. I can easily do that using the conditional wizard in the Scan tab which creates the following: plot scan = reference VWAP("time frame" = "WEEK")."VWAP" is great...