Registered User Joined: 11/9/2009 Posts: 36
|
Hi,
Can some one help create this scan
Prior candle red and current candle green
Prio candle green and current candle red
** based on high and low of the candle**
Also, price touching expoential 89 ma and exponential 55 ma
Thanks,
David
|
Registered User Joined: 11/9/2009 Posts: 36
|
Also, a scan to identify a close about previous candle high and one for the low
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You can't set Color Based On to High and Low. If it is set to Open vs Close, then prior candle red and current candle green would be the following.
C >= O AND C1 < O1
And prior candle green and current candle red would be the following.
C < O AND C1 >= O1
If it is set to Net Change, then prior candle red and current candle green would be the following.
C >= C1 AND C1 < C2
And prior candle green and current candle red would be the following.
C < C1 AND C1 >= C2
The current candle intersecting both the 55 and 89 period exponential moving averages could be written as follows.
L <= XAVGC55 AND XAVGC55 <= H AND L <= XAVGC89 AND XAVGC89 <= H
The close being within say 0.5% of the previous high would be the following.
ABS(C / H1 - 1) <= .005
And the close being within 0.5% of the previous low would be the following.
ABS(C / L1 - 1) <= .005
-Bruce Personal Criteria Formulas TC2000 Support Articles
|