My System - My trades.

niftytaurus

Well-Known Member
Sir,
EMA cloud AFL
Code:
SetChartOptions(0,chartShowArrows|chartShowDates);


Ob = OBV();
Plot(Ob,"",colorWhite,styleNoTitle|styleThick,0,0,0,0,2);

_SECTION_BEGIN("EM");

EM=ParamToggle("EM","Off|On",1);

if(EM)
{
Ob = OBV();
Plot(Ob,"",colorWhite,styleNoTitle|styleThick,0,0,0,0,2);
Plot( EMA( OBV(), 36 ), "EMA36OBV", ColorRGB(255,0,255), styleLine ,styleNoLabel|styleNoRescale );
Plot( EMA( OBV(), 200 ), "EMA200OBV", ColorRGB(102,255,204), styleLine ,styleNoLabel|styleNoRescale );
m3=EMA(OBV(),36);
m4=EMA(OBV(),200);
PlotOHLC(m3,m3,m4,m4,"Cloud",IIf(m3>m4,colorGreen,colorRed),styleCloud|styleNoRescale,Null,Null,0,-2,0);
}
_SECTION_END();


mdbrar sir
required code by you
 

wisp

Well-Known Member
Varunji, please check my markings

L,M are not credible swing lows because swing high is not taken out

N is a credible swing low because swing high (above vksl line) at D is taken out

P is credible swing low because F took out E, so we will be stopped out at P

Reentry :
G swing high above VKSL, when H takes out G and then S takes down R, we have a credible high at H
do we go long over H with SL at S ?

 

Similar threads