Need AFL for below Pivot Levels

#1
Need AFL for Fibonacci Pivot Levels

Dear Members,

Please share Fibonacci Pivot afl to draw pivot levels on chart itself with all available fibo levels.

Thanks in advance.
 
Last edited:

sr114

Well-Known Member
#2
Re: Need AFL for Fibonacci Pivot Levels

Dear Members,

Please share Fibonacci Pivot afl to draw pivot levels on chart itself with all available fibo levels.

Thanks in advance.
Raj

cud u elaborate more abut what u want or if u have any chart image pls post that. so it will be helpful for the afl.

or try to put the fibo on default price chart and in that chart - pls mark what u want

rgds
subroto
 
#3
Re: Need AFL for Fibonacci Pivot Levels

Raj

cud u elaborate more abut what u want or if u have any chart image pls post that. so it will be helpful for the afl.

or try to put the fibo on default price chart and in that chart - pls mark what u want

rgds
subroto
Dear Subroto,

Simply I want an afl which will draw Fibo Pivot levels on my chart like we have many pivot level afls for classical pivot points s1,s2,s3 and r1,r2,r3. Same way it should draw fibo pivot levels instead classic pivots.
 
#4
Re: Need AFL for Fibonacci Pivot Levels

Dear Subroto,

Simply I want an afl which will draw Fibo Pivot levels on my chart like we have many pivot level afls for classical pivot points s1,s2,s3 and r1,r2,r3. Same way it should draw fibo pivot levels instead classic pivots.[/QUOTE


bump...
 
#6
raj_usb

Try the below Afl

SetChartOptions(2,chartShowDates);
GraphXSpace=5;
Plot(C,"",colorBlack,styleCandle);

_SECTION_BEGIN("Fibo Pivots");
//by K.Vidyasagar, [email protected]
PH = DayH = TimeFrameGetPrice("H", inDaily, -1); DayHI = LastValue (DayH,1);// yesterdays high
PL = DayL = TimeFrameGetPrice("L", inDaily, -1); DayLI = LastValue (DayL,1); // yesterdays low
PC = DayC = TimeFrameGetPrice("C", inDaily, -1); // yesterdays close
PR = PH - PL;
//DayO = TimeFrameGetPrice("O", inDaily); // current day open

numbars = LastValue(Cum(Status("barvisible")));
hts = -33.5;
R=PH-PL;//range
P=(PH+PL+PC)/3; pI = LastValue (p,1);// Standard Pivot
fr1 = p + (R * 0.38); fr1I = LastValue (fr1,1);
fr2 = p + (R * 0.62); fr2I = LastValue (fr2,1);
fr3 = p + (R * 0.99); fr3I = LastValue (fr3,1);
fs1 = p - (R * 0.38); fs1I = LastValue (fs1,1);
fs2 = p - (R * 0.62); fs2I = LastValue (fs2,1);
fs3 = p - (R * 0.99); fs3I = LastValue (fs3,1);

Plot(p,"Pivot",colorBlue,styleDots|styleNoLine|styleNoRescale);
Plot(fr1,"R1",colorRed,styleDots|styleNoLine|styleNoRescale);
Plot(fr2,"R2",colorPink,styleDots|styleNoLine|styleNoRescale);
Plot(fr3,"R3",colorRose,styleDots|styleNoLine|styleNoRescale);
Plot(fs1,"S1",colorGreen,styleDots|styleNoLine|styleNoRescale);
Plot(fs2,"S2",colorLime,styleDots|styleNoLine|styleNoRescale);
Plot(fs3,"S3",colorPaleGreen,styleDots|styleNoLine|styleNoRescale);
PlotText(" Pivot ", LastValue(BarIndex())-(numbars/Hts), pI, colorBlue);
PlotText(" Fib R1 " , LastValue(BarIndex())-(numbars/Hts), fr1I, colorRed);
PlotText(" Fib R2 " , LastValue(BarIndex())-(numbars/Hts), fr2I, colorPink);
PlotText(" Fib R3 " , LastValue(BarIndex())-(numbars/Hts), fr3I, colorRose);
PlotText(" Fib S1 " , LastValue(BarIndex())-(numbars/Hts), fs1I, colorGreen);
PlotText(" Fib S2 " , LastValue(BarIndex())-(numbars/Hts), fs2I, colorLime);
PlotText(" Fib S3 " , LastValue(BarIndex())-(numbars/Hts), fs3I, colorPaleGreen);
_SECTION_END();


vidyasagar
 

Similar threads