New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
scan logic:
the first candle closed lower than it opened
the first candle is a long candle(body at least as long as shadow
the second candle opens at or above the level of previous open
the second candle closed above where it opened
the second candle is a long candle (body at least as long as shadow)
the second candle does not trade (retrace)into previous candle trading range.
My scan writeup gave a totally different results. Thanks in advance for your help.
0
Answers
[country = US] AND
[Daily SMA(20,Daily Volume) > 400000] AND
[Yesterday's Daily Open < Yesterday's Daily Close] AND
[[yesterday's open - Yesterday's close] > 0] and
[ [yesterdays open - yesterday's close] > [high-low] * .5]
//[Yesterday's Daily AbsGain >= Daily Range * 0.5] AND
and [Daily Open <= Yesterday's Daily Open] AND
[Daily Low <= Yesterday's Daily Open] AND
[Daily Close < Daily Open]
and [[close - open] > 0]
and [ [close - open] < [high-low] * .5]
thanks for your help