Scan for current price > previous day low


Category:
0
0

Hi all, I would really appreciate it if you could show me the code that I could use to run a scan on thinkorswim to find out the stocks which the current price during the intraday is greater than previous day low. Thx.

Marked as spam
Posted by (Questions: 1, Answers: 1)
Asked on November 8, 2019 9:00 pm
193 views
0
Private answer

You do not need to run this on intraday time frame for this to work. The simple solution is to run your Study Filter on daily frame using the following code:

plot scan = close > low[1];

And you could have just built this using the condition wizard. You don't need to write code to solve this one.

https://www.hahn-tech.com/thinkorswim-condition-wizard/

Marked as spam
Posted by (Questions: 37, Answers: 4087)
Answered on November 10, 2019 9:02 am
0
Thanks a million Hahn, you’re the best! Much appreciated.
( at November 10, 2019 6:53 pm)