Additional question please –
Can the screener be executed periodically. I presume this is possible but I can’t seem to figure out.
Say I want to look for pattern every 5min in intraday market for NYSE stocks. I have the screener coded up. How can I set this up?
JSParticipant
Veteran
If you want to run the screener periodically, you can try this:
TimeFrame(5 min)
If OpenMinute=0 or OpenMinute=5 or OpenMinute=10 or …. OpenMinute=55 Then
… Screener Conditions…
EndIf
Screener[Conditions]
Very cool solution. I will try this on Monday.
Thank you.
this feels like a native solution to have when scanner allows intraday scanning.
will the solution you suggested get “rate limited” in some ways?
there must be a good reason PRT doesnt have it implemented.
Hmm,.. it doesn’t seem to work. it just proceeds to trigger the screener once.