Gann HiLo and Linear Regression Acceleration for Metatrader 4

 
I am trying to switch from CMS to Interbank FX and I have used a lot the GANN HiLo and the "Linear Regression Acceleration" I can't find those indicators for the MetaTrader4. Any help will be greatly apreciated.

Gann HiLo
HLd:=If(C>Ref(Mov(H,Lb,S),-1),1,If(C<Ref(Mov(L,Lb,S),-1),-1,0));
HLv:=ValueWhen(1,HLd<>0,HLd);
HiLo:=If(HLv=-1,Mov(H,Lb,S),Mov(L,Lb,S));



Linear Regression Acceleration
SmoothData:= mov(Price,SmoothPeriods,SmoothType);
Slope:= (linregslope(smoothdata,RegPeriods))*100/Price;
Acceleration:= Slope - ref(Slope,-1);
PlusAcceleration:= if(Acceleration>=ref(Acceleration,-1),Acceleration,null);
MinusAcceleration:= if(Acceleration<ref(Acceleration,-1),Acceleration,null);


Thank you very much.

PS. You can email me directly at mql4@nastase.com

Reason: