Re: Please Help me to find this afl
here it is. very good tool if you understand it.
Please Help me to find this afl
I found a picture on this one website that is in google. But did not find txt. Of the afl.
In my opinion this afl is very good to see the fake price movement so that can support buy and sell decision and also. However, the problem is I can not create or know the background of the afl. If pleasent, please help so afl this also be a blessing in need. Thank you for the help.
Thank you very much
I found a picture on this one website that is in google. But did not find txt. Of the afl.
In my opinion this afl is very good to see the fake price movement so that can support buy and sell decision and also. However, the problem is I can not create or know the background of the afl. If pleasent, please help so afl this also be a blessing in need. Thank you for the help.
Thank you very much
Code:
SetBarsRequired(sbrAll,sbrAll);
VolMAP = Param("VolMAP",5,1,400,1); // sets presiod for volume moving avergae
RatMAP = Param("RatMAP",6,1,400,1);// set period for price/volume moving average
PVRat = 1000*C/MA(V,VolMAP); // calculate price/MA(volume) ratio
MAPVR = MA(PVRat, RatMAP); // calculate MA of PV ratio
Plot(PVRat,"Price Volume Ratio",colorBlue,styleLine|styleThick);
Plot(MAPVR,"MAPVR",colorViolet,styleLine|styleThick);