open interest afl

sam_u6

Active Member
#2
tell me where ur getting open interest data in live,,if u got that then the fomula is already there in chart pannel in amibroker,,below basic chart ,open interest afl is there,but as per my knowlege ,open interest data in live is not available,pls check ur side also
 

pkgmtnl

Well-Known Member
#3
tell me where ur getting open interest data in live,,if u got that then the fomula is already there in chart pannel in amibroker,,below basic chart ,open interest afl is there,but as per my knowlege ,open interest data in live is not available,pls check ur side also
Market-Data-Provider is giving Live OI data,

Ami has an AFL of OI, still if U require a differnt then it is:-
_SECTION_BEGIN("oi");
//Plot( OI, _DEFAULT_NAME(), ParamColor("Color", colorBlueGrey ), ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick, maskHistogram ), 2 );
_SECTION_END();
//written by Thomas Zmuck
//Date: 15-07-02
//[email protected]

pds = 10;
V1 = OI/MA(OI,10); V2 = OI/MA(OI,20);
V3 = OI/MA(OI,50);
x=100*OI/MA(OI,pds);
barcolor =
IIf( x>Ref(x,-1),5,6);
/* Colourized price bars drawn here */
Plot(100*OI/MA(OI,pds)," oi/ma(10)",barcolor,2+4);

Plot(100," AVG(10)",1,1);

unsure = V1<1 AND V2<1 AND V3<1;
sure = V1>1 AND V2>1 AND V3>1;

Filter = unsure;
AddColumn(100*V/MA(V,10),"V/ma(V,10)",1.0);
AddColumn(100*V/MA(V,20),"V/ma(V,20)",1.0);
AddColumn(100*V/MA(V,50),"V/ma(V,50)",1.0);
AddColumn(ROC(C,1),"%today");
 

sam_u6

Active Member
#5
Market-Data-Provider is giving Live OI data,

Ami has an AFL of OI, still if U require a differnt then it is:-
_SECTION_BEGIN("oi");
//Plot( OI, _DEFAULT_NAME(), ParamColor("Color", colorBlueGrey ), ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick, maskHistogram ), 2 );
_SECTION_END();
//written by Thomas Zmuck
//Date: 15-07-02
//[email protected]

pds = 10;
V1 = OI/MA(OI,10); V2 = OI/MA(OI,20);
V3 = OI/MA(OI,50);
x=100*OI/MA(OI,pds);
barcolor =
IIf( x>Ref(x,-1),5,6);
/* Colourized price bars drawn here */
Plot(100*OI/MA(OI,pds)," oi/ma(10)",barcolor,2+4);

Plot(100," AVG(10)",1,1);

unsure = V1<1 AND V2<1 AND V3<1;
sure = V1>1 AND V2>1 AND V3>1;

Filter = unsure;
AddColumn(100*V/MA(V,10),"V/ma(V,10)",1.0);
AddColumn(100*V/MA(V,20),"V/ma(V,20)",1.0);
AddColumn(100*V/MA(V,50),"V/ma(V,50)",1.0);
AddColumn(ROC(C,1),"%today");
realy thanks pkg ,sory for the long late reply,ur afl is super ,which i wanted thanks a lot dear
 

sam_u6

Active Member
#8
hey sam can u plz explain how u making best use out of this formula...... i mena can u help me using it
dear amit bhaiya ,
i use it for forecasting, i am geting some idea of what the people interested or fii what they are doing ,like
buying= open interest increase+price increase
sell=open interest decrease+price decrease
short covering=open intrest decrease+price increase
fresh short=open interenst increase+price decrease
 
#9
dear amit bhaiya ,
i use it for forecasting, i am geting some idea of what the people interested or fii what they are doing ,like
buying= open interest increase+price increase
sell=open interest decrease+price decrease
short covering=open intrest decrease+price increase
fresh short=open interenst increase+price decrease
Sam ji and friends Would you mind to share this afl with your conditions + mine (I'm not good in afl writing)
Short= atp value decreases or idle but Open interest increases
Buy= atp value increases + Open interest increases
Thanks in advance
 

sam_u6

Active Member
#10
dear balan ji

open interest afl is below in this post itself,
but we cant trade alone with it,,its a forecast afl ,so we can get some idea
where the market or stock is heading to ,,the interest of the people in it can be seen
 

Similar threads