Here is some code that was forwarded to me from another trader. He called them Fibonnaci Bollingers, but to me they don't really resemble either.
I was hoping someone could help me identify them so that I could code them into and EFS study.
TH:=If(Ref(C,-1) > H,Ref(C,-1),H);
TL:=If(Ref(C,-1) < L,Ref(C,-1),L);
TR:=TH-TL;
TRA:= Wilders(TR,Periods);
MidPoint:= Mov(pr,Periods,mat);
UpperBand3:= MidPoint + (factor3 * TRa);
UpperBand2:= MidPoint + (factor2 * TRa);
UpperBand1:= MidPoint + (factor1 * TRa);
LowerBand1:= MidPoint - (factor1 * TRa);
LowerBand2:= MidPoint - (factor2 * TRa);
LowerBand3:= MidPoint - (factor3 * TRa);
Any help would be appreciated.
James
I was hoping someone could help me identify them so that I could code them into and EFS study.
TH:=If(Ref(C,-1) > H,Ref(C,-1),H);
TL:=If(Ref(C,-1) < L,Ref(C,-1),L);
TR:=TH-TL;
TRA:= Wilders(TR,Periods);
MidPoint:= Mov(pr,Periods,mat);
UpperBand3:= MidPoint + (factor3 * TRa);
UpperBand2:= MidPoint + (factor2 * TRa);
UpperBand1:= MidPoint + (factor1 * TRa);
LowerBand1:= MidPoint - (factor1 * TRa);
LowerBand2:= MidPoint - (factor2 * TRa);
LowerBand3:= MidPoint - (factor3 * TRa);
Any help would be appreciated.
James
Comment