Registered User Joined: 3/4/2005 Posts: 55
|
Bruce,
Using TC2000 Platinum PC version, is there a way, after the market opens, to scan for stocks that have dipped below previous day's close and then cross above the previous day's close. No time limit on when crossing below prev-close to crossing above prev-day close. Scan conditions using 1min or 5min bar charts.
Thanks,
Ed
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You would do the scan using a daily time frame. If you don't need to open above the close:
L < C1 AND C1 < C
If you do need to open above the close (which might be implied by your description).
L < C1 AND C1 < LEAST(O, C)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 3/4/2005 Posts: 55
|
Thank you Bruce.
Works as I had hoped it would, and how simple the code is.
And thank you for your optional code to scan for 'open above previous close'. I will use as well. Have never used the PCF commad 'LEAST', nor aware of it, but looks to be quite useful.
Ed
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|