My System - My trades.

Tuna

Listen and act, don't ask it, it doesn't oblige
Aar ka LV bar chicha - Shorts kiye the 12 point profit main tha, 7 PM wale Suar ake TSL le gaya. Now with the saved 2 points I can only buy a chocobar.

Never mind - just venting out. U carry on


Sent from my iPhone using Tapatalk
 

kumudhan

Well-Known Member
Sir,
EMA cloud color price
Code:
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );

_SECTION_BEGIN("EM");

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

if(EM)
{

Plot( EMA( C, 36 ), "EMA36OBV", ColorRGB(255,0,255), styleLine ,styleNoLabel|styleNoRescale );
Plot( EMA( C, 200 ), "EMA200OBV", ColorRGB(102,255,204), styleLine ,styleNoLabel|styleNoRescale );
m3=EMA(C,36);
m4=EMA(C,200);
PlotOHLC(m3,m3,m4,m4,"Cloud",IIf(m3>m4,colorGreen,colorRed),styleCloud|styleNoRescale,Null,Null,0,-2,0);
}
_SECTION_END();

here..
 

kumudhan

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();

cloud obv.credit goes to monkeybusiness sir.
 

Similar threads