General Trading Chat

Hi

Can anyone please share OBV histogram afl?

The one I have is not proper its some different kind of variety
Is below afl code what you are searching.
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();
 

toocool

Well-Known Member
Is below afl code what you are searching.
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();
this is not i was referring to

its not histogram , its afl by varun ji
 

checkmate7

Well-Known Member
Pharma sector flying high even in the cloud cover :)
 

vivektrader

In persuit of financial independence.
I'm trying to see the open=high/low for stock futures in nseindia website equity derivates section, but only 20 stock futures are listed. Whereas for equity section all stocks in different sectors are listed.

https://www.nseindia.com/live_market/dynaContent/live_watch/derivative_stock_watch.htm#top

Is there any other place to see open=high/low for stock futures for all equities.

thanks
You can add a screener in your trading platform such as pi, search stock screener for pi.
Or
There is one fatafat screener, search for that.
Vivek
 
Last edited:

Similar threads