thefoxmanjr 9 posts msg #121542 - Ignore thefoxmanjr |
9/19/2014 8:11:10 PM
Still struggling with below - what am I doing wrong?
set{c1,count(pattern is bullish harami date offset 1 day],1)}
set{c2,count(pattern is bullish engulfing date offset 1 day],1)}
set{c3,count(pattern is Bullish Separating Lines date offset 1 day],1)}
set{c4,count(pattern is Bullish Harami Cross date offset 1 day], 1)}
set{c5,count(pattern is Bullish Morning Doji Star date offset 1 day],1)}
set{c6,count(pattern is Bullish Abandoned Baby date offset 1 day],1)}
set{c7,count(pattern is Bullish Kicking date offset 1 day], 1)}
add column c1
add column c2
add column c3
add column c4
add column c5
add column c6
add column c7
set{cnt1, c1 + c2}
set{cnt2, cnt1 + c3}
set{cnt3, cnt2 + c4}
set{cnt4, cnt3 + c5}
set{cnt5, cnt4 + c6}
set{cnt, cnt5 + c7}
add column cnt
count > 0
sort column 12 descending
close is greater than 10
avg (90) volume is greater than 250000
close is greater than ema(8)
Atr(20) is greater than 1
add column ema(8)
add column volume
add column avg vol(20)
add column sector
add column Williams %R(14)
add column Slow stochastics (14,3)%k
add column Slow stochastics (14,3)%d7
|