My trades based on "new way of pivot trading" and vwap

xitija

Well-Known Member


Xitija didi's hindalco not trending properly today. 3 paper trades.. 1 scratch, 2nd loss, 3rd is open but sl below 193.
eww,Xitija didi's hindalco,sounds like Mamta didi's Bengal.
Plain Xitija is fine,adding didi,Ji are outdated these days :p

Just one scratch trade in Hindalo,then traded only BNF.I already told my motive is now to grow so I am slowly shifting to futures,concentrating more on BNF and NF.
 

vijkris

Learner and Follower
eww,Xitija didi's hindalco,sounds like Mamta didi's Bengal.
Plain Xitija is fine,adding didi,Ji are outdated these days :p

Just one scratch trade in Hindalo,then traded only BNF.I already told my motive is now to grow so I am slowly shifting to futures,concentrating more on BNF and NF.
No issues.. i rarely call anyone by name, as most of the members here are older than me.. :)

Here is the obv afl which depicts exact crossover.

Code:
_SECTION_BEGIN("OBV");
Plot( OBV(), _DEFAULT_NAME(), ParamColor("Color", colorOrange ), ParamStyle("Style")  );
_SECTION_END();

_SECTION_BEGIN("EMA36");
P = OBV();
Periods = Param("Periods", 36, 2, 300, 1, 0 );
//TEMA1 = TEMA(P,Periods);
EMA36 = EMA(P,Periods);
Plot( EMA36, _DEFAULT_NAME(), ParamColor( "Color", colorBrightGreen ), ParamStyle("Style") ); 
_SECTION_END();

_SECTION_BEGIN("EMA1");
P = OBV();
Periods = Param("Periods", 200, 2, 300, 1, 0 );
EMA1 = EMA(P,Periods);
Plot( EMA1, _DEFAULT_NAME(), ParamColor( "Color", colorPink ), ParamStyle("Style",styleDashed|styleNoRescale) ); 
_SECTION_END();
pureUp = OBV()>EMA36 AND OBV()>EMA1 AND EMA36>EMA1;
pureDown = OBV()<EMA1 AND OBV()<EMA36 AND EMA36<EMA1;
impureUp = OBV()>EMA1;
impureDown = OBV()<EMA1;

//Clr = IIf(OBV()>Ref(OBV(),-1)AND OBV()>TEMA1,colorGreen,IIf(OBV()<Ref(OBV(),-1)AND OBV()<TEMA1,colorRed,colorGrey40));
Clr = IIf(pureUp,colorGreen,IIf(pureDown,colorRed,IIf(impureUp,colorPaleGreen,IIf(impureDown,colorDarkRed,colorGrey40))));
Plot(8, "", Clr, styleArea|styleOwnScale, 0, 100, 0, -1) ;

Buy = Cross(OBV(),EMA1);
Sell = Cross(EMA1,OBV());

PlotShapes(Buy*shapeUpArrow,colorGreen,0,EMA1,-20);
PlotShapes(Sell*shapeDownArrow,colorRed,0,EMA1,-20);
 

vijkris

Learner and Follower
Guys, any way of having 2 colored EMAs in Kite/Pi ?? I would dearly like green+red EMAs indicating trend of the line.
Indiacators in kite/pi is not customisable.. :(
so for these purpose ami/ninja is the solution.
 

Similar threads