Need to write strategy for Sierra Chart

ProTraderTom

Newbie
Messages
6
Likes
0
Could someone help me write the following strategy for Sierra Chart?


Here is what I want accomplished:


Using 5min chart and calculated at close of each 5min candle.


Trigger a BUY signal when:

(
close > open
AND
close> (low+high)/2
AND
StochRSI(14 period) > moving average of StochRSI(3 period) (aka: %D line of StochRSI)
AND
CCI(14) > 0
AND
ChoppinessIndex(14) < 60
AND
RSI(14) < 70
AND
MACD(12, 26, 9).Diff > 0
AND
ChaikinMoneyFlow(14) < 0.20
AND
TRIX(10,3) Crosses over 0
)

OR

(
close > ParabolicSAR
AND
Stochastic(%K,14,3,3,5)> Stochastic(%D,14,3,3,5)
AND
MomentumROC(12) > 0
AND
DirectionalMovement[+DI,14] crosses over DirectionalMovement[-DI,14]
AND
(AccumulationDistribution > 0 OR AccumulationDistribution of previous candle > 0) AND
ExpMovingAverage(10) crosses over ExpMovingAverage(25)
AND
TRIX(10,3)> 0
AND
moving average of StochRSI(3 period)>= 0.80 (aka: %D line of StochRSI)
AND
CCI > CCI of previous candle
)
 
Top