BollingerBands-Fibo

 

hi all,

need some helps to convert this BollingerBands-Fibo (.mql) format into (.mq4) format. There is 2 files there. I dont know which one is the correct one.

thanks in advance.

cp6

 
[Deleted]  

That has never worked for me yet. Not on one single EA or indicator. Has it worked for anyone? It certianly makes some sort of a conversion, but as far as it working... nothing yet.

 

thanks foreverold!

[Deleted]  

Bollinger-Fibo.mql to Bollinger-Fibo.mq4

Hello,

you have convert Bollinger-Fibo.mq4 ?

Still not work Mql2Mq4.exe

Please help me.

 

fibo channes

try this one

Files:
fibtunnel.mq4  4 kb
[Deleted]  
nnjeim:
try this one

Thanx, but this is Fib Tunel not corect.

I need convert from MQL to MQ4 exactly. Or translate from amibroker AFL to MQ4 this code:

per = Param("Period",20,10,55,1);

TH =IIf(Ref(C,-1) > H,Ref(C,-1),H);

TL=IIf(Ref(C,-1) < L,Ref(C,-1),L);

TR = TH-TL;

TRa= Wilders(TR,per);

UpperBand=MA( C, per) + ( 1.6180 * TRa);