Heikinashi Cntd.

BUY : when two continuous GREEN candle formed then above
high of previous candle.

SELL : when two continuous RED candle formed then below
low of previous candle.

[HEIKINASHI]
BUY{
SET PC2 = REF(CLOSE,2);
SET PC1 = REF(CLOSE,1);
SET PO2 = REF(OPEN,2);
SET PO1 = REF(OPEN,1);
PC2 > PO2 AND PC1 > PO1 AND PC1 > PC2 AND PO1 > PO2 AND 
CLOSE > REF(HIGH,1);}

LONGEXIT{
CROSSOVER(EMA(CLOSE,5),CLOSE);}

SELL{
SET PC2 = REF(CLOSE,2);
SET PC1 = REF(CLOSE,1);
SET PO2 = REF(OPEN,2);
SET PO1 = REF(OPEN,1);
PC2 < PO2 AND PC1 < PO1 AND PC1 < PC2 AND PO1 < PO2 AND 
CLOSE < REF(LOW,1);}

SHORTEXIT{
CROSSOVER(CLOSE,EMA(CLOSE,5));}

This slideshow requires JavaScript.

Heikinashi Cntd

BUY : when TMA(50 Period) < Close and current volume > previoue volume*20
SELL : when TMA (50 Period)> Close and current volume > previoue volume*20

[HEIKINASHI]
BUY{
SET tma1 = TMA(CLOSE,50);
CLOSE > tma1 and VOLUME > REF(VOLUME,1)*20;}

LONGEXIT{
CLOSE < OPEN;}

SELL{
SET tma1 = TMA(CLOSE,50);
tma1 > CLOSE and VOLUME > REF(VOLUME,1)*20;}

SHORTEXIT{
CLOSE > OPEN;}

This slideshow requires JavaScript.

HEIKIN-ASHI

Heikin-Ashi Candlesticks use the open-close data from the prior period and the open-high-low-close data from the current period to create a combo candlestick.

[HEIKINASHI]
BUY{
SET hv = MAX(CLOSE,10);
CLOSE > hv and REF(CLOSE,2) < REF(OPEN,2) and REF(CLOSE,1) > REF(OPEN,1) and CLOSE > OPEN and CLOSE > REF(CLOSE,1);}

LONGEXIT{
REF(CLOSE,1) < REF(OPEN,1);}

SELL{
SET Lv = MIN(CLOSE,10);
CLOSE < lv and REF(CLOSE,2) > REF(OPEN,2) and REF(CLOSE,1) < REF(OPEN,1) and CLOSE < OPEN and CLOSE < REF(CLOSE,1);}

SHORTEXIT{
REF(CLOSE,1) > REF(OPEN,1);}

This slideshow requires JavaScript.

HEIKIN ASHI Candlesticks

Heikin Ashi candlesticks requires data from the previous candle, meaning they essentially build off one another. It is this chaining effect that gives a really unique view into the market.
The ‘Calculation’ for their construction is designed to creates a ‘smoothing’ effect – filtering out the irrelevant moves, while maintaining the display of the dominant price action.

BUY : When Current close crossed above EMA of 40 period and close is greater than open and also open = low.

SELL: When open = high and current open is greater than current close and EMA of 40 period is greater than current close.

[HEIKINASHI]
BUY{
OPEN = LOW and CLOSE > OPEN and CROSSOVER(CLOSE,EMA(CLOSE,40));}

LONGEXIT{
OPEN = HIGH and CLOSE < OPEN and EMA(CLOSE,40) > CLOSE;}

This slideshow requires JavaScript.