Registered User Joined: 11/18/2017 Posts: 56
|
Hi,
Is there any conditional scan available for stocks breaking whole number(up or down) intra day?
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You might be able to use something like the following daily formula to check if price has crossed a whole number intraday.
(H - .4999999) \ 1 <> (L - .4999999) \ 1
Or maybe the following if you want to use true range instead of regular range.
(GREATEST(H, C1) - .4999999) \ 1 <> (LEAST(L, C1) - .4999999) \ 1
This will count if the high or low just touches the even dollar value instead of actually crossing through.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|