Registered User Joined: 8/13/2018 Posts: 1
|
Hello All,
I am finding/trying to get a scanner for stocks on TC2000 , where it lists out stocks whoes previous days closing and the current days closing is between the same pivot points . the reason is my trading is done based on tape reading and feel or a trend change or a stock going into consolidation at an early stage .
for example :
Stock A :
1/02/2019 : closed at 123.74
2/02/2019 : closed at 124.24
and pivots i.e R1 is at 124.50 and Pivot point is 123.50
would be awesome if you guys could help me out with creating a scanner of this sort , so i can scan stocks on tc2000v18.
Looking forward to a reply ,
Regards,
Lost
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The following goes from R4 through S4 (so one more pivot point level than is normally plotted by the pivot point indicator).
MAXH2 > MINL2 AND ((7 * H1 - 5 * L1 + C1 >= 3 * MAXC2 AND 3 * MINC2 >= 5 * H1 - 4 * L1 + 2 * C1) OR (5 * H1 - 4 * L1 + 2 * C1 >= 3 * MAXC2 AND 3 * MINC2 >= 4 * H1 - 2 * L1 + C1) OR (4 * H1 - 2 * L1 + C1 >= 3 * MAXC2 AND 3 * MINC2 >= 2 * H1 - L1 + 2 * C1) OR (2 * H1 - L1 + 2 * C1 >= 3 * MAXC2 AND 3 * MINC2 >= H1 + L1 + C1) OR (H1 + L1 + C1 >= 3 * MAXC2 AND 3 * MINC2 >= 2 * L1 - H1 + 2 * C1) OR (2 * L1 - H1 + 2 * C1 >= 3 * MAXC2 AND 3 * MINC2 >= 4 * L1 - 2 * H1 + C1) OR (4 * L1 - 2 * H1 + C1 >= 3 * MAXC2 AND 3 * MINC2 >= 5 * L1 - 4 * H1 + 2 * C1) OR (5 * L1 - 4 * H1 + 2 * C1 >= 3 * MAXC2 AND 3 * MINC2 >= 7 * L1 - 5 * H1 + C1))
-Bruce Personal Criteria Formulas TC2000 Support Articles
|