My System - My trades.

doss186

Well-Known Member
tried to find but didnt get it

anyone has obv histogram afl please ??
Here is K.H.Tang's code for OBV, performs much better than AB's inbuilt OBV

//------------------------------------------------------------------------------
// Formula Name : OGTS Time Segmented Money Flow
// Author : KH Tang
// Company : Wealth Resonance
// Last Update : 15 Jan 2014
// Date Updated : 22 Nov 2013 // Update with opening price as direction*
// Origin date : 5 Jun 2007
// Origin : KH Tang
// Version : 1.01
// Level : Volume Analysis
// Description : Key Usages:
// : 1.Tape Reading for Direction of Breakout in Trading Range
// : 2.Tape Reading for Divergence in Trending
// : Note: Enhancement to include Opening price as direction.
//------------------------------------------------------------------------------

procedure BackgroundSetting()
{

SetChartBkGradientFill( ParamColor("BackgroundTop", colorSkyblue),
ParamColor("BackgroudBottom", colorWhite),ParamColor("TitleBlock",colorWhite));
}


SetBarsRequired( -2, -2 );
_SECTION_BEGIN("Display Setting");
GraphXSpace = 10;
Backgroundsetting();
_SECTION_END();//Display Setting

//William C. Garrett's Approximation:
//GPaths = IIf(C>Ref(C,-1),((H-Ref(C,-1))+(H-L)+(C-L)),IIf(C
//GUpShare = IIf(C>Ref(C,-1),((H-Ref(C,-1))+(C-L)),IIf(C
//GDnShare = IIf(C>Ref(C,-1),(H-L),IIf(C


//Expansion for clarity:
PathA1= Ref(C,-1)-L;
PathB1= H-L;
PathC1= H-C;
Path1 = PathA1+PathB1+PathC1;
UpShare1 = PathB1;
DnShare1 = PathA1+PathC1;

PathA2= H-Ref(C,-1);
PathB2= H-L;
PathC2= C-L;
Path2 = PathA2+PathB2+PathC2;
UpShare2 = PathA2+PathC2;
DnShare2 = PathB2;

Paths = IIf(C<Ref(C,-1),Path1, IIf(C>Ref(C,-1),Path2, 1));
UpShare= IIf(C<Ref(C,-1),UpShare1,IIf(C>Ref(C,-1),UpShare2,0));
DnShare= IIf(C<Ref(C,-1),DnShare1,IIf(C>Ref(C,-1),DnShare2,0));

FlowFactor = Avg;

FlowIn = UpShare/Paths*Volume*FlowFactor;
FlowOut = DnShare/Paths*Volume*FlowFactor;
NetFlow = FlowIn - FlowOut;
TotalFlow = Cum(NetFlow );


PlotType = ParamList("Type of Chart Plotting:","Cumulative|Time Segmented",1);
LBP = Param("LBP for Time Segmented Plot",26,10,50,1);
FastSmoothMF = EMA(TotalFlow,int(LBP/2));
SlowSmoothMF = EMA(TotalFlow,LBP);

DailyNetFlow= IIf(NetFlow==0,MA(Netflow,30),NetFlow);

if(PlotType=="Cumulative")
{
Plot(TotalFlow ,"Garrett Money Flow",colorRed,styleThick);
}
else if (PlotType=="Time Segmented")
{
TSMF=FastSmoothMF - SlowSmoothMF;
Plot(TSMF,"Time Segmented Money Flow",colorRed,styleThick);
Plot(0,"",colorBlack);
TSMFsig = EMA(TSMF,9);
Plot(TSMFsig,"Sig",colorBlue);

Histogram = TSMF-TSMFSig;

Plot(Histogram,"Histogram",colorBlack,styleHistogram);

}
 
tried to find but didnt get it

anyone has obv histogram afl please ??
Not sure if you are referring to this one, code from Happy Ji.
Code:
_SECTION_BEGIN("On Balance Volume");
Ob        =    OBV();   
eOb     =    EMA(Ob,20);
delta    =    Ob - eOb;              //Difference in Ob & its EMA
ObCol    =    IIf(eOb > Ref(eOb,-1),ColorRGB(200,200,180),ColorRGB(180,20,20));

Plot(delta,"Delta",ObCol,styleThick|styleHistogram);
Plot(delta,"",ObCol,styleNoLabel);
Plot(0, "", ObCol,styleNoLabel|styleThick);
_SECTION_END();
 
Dear Varun Ji, Heartly congrats for this. But as she is joining them in June next year & having lots of time, she still can look/appear for other opportunities as well.

saying from my elder brother experience, who is currently in cognizant and in last 4 months he was twice told that they don't have any further project for his skill(s) and he is on the edge.

Just my 2 cents.

Regards,
Thanks Chintan ji. Yes She already did her internship with Deloitte who have also shown interest in hiring her after her Graduation. She will also take a shot at Mackenzie. She does not want me to pull anystrings for Google (as you might be aware that you get placed only through reference in Google.) God willing she will follow my tradition in going to some IVY league college after 1 or 2 years experience.
 

Similar threads