i will doI have an interesting EA here Currency Strength
Instructions: Open a D1 chart (no mater what chart)
Drag to chart that's it ..works on 28 pairs
I need someone to add a reverse trade option please and post here (have fun)
Yeah maybe you are rightMaybe it's bad calculation (in coding) as currency strength can be negative and positive , and the difference can be the issue .
that's a good idea i have it on demo to see which pairs are the bestFirst ea not good. Reverse can be worked but spreads make it loser.
Have you tried copy trade reverse option?
i will doI have an interesting EA here Currency Strength
Instructions: Open a D1 chart (no mater what chart)
Drag to chart that's it ..works on 28 pairs
I need someone to add a reverse trade option please and post here (have fun)
i will doI have an interesting EA here Currency Strength
Instructions: Open a D1 chart (no mater what chart)
Drag to chart that's it ..works on 28 pairs
I need someone to add a reverse trade option please and post here (have fun)
Pingu , i think this is the thread u mean on inbox .. so i try to write here
i think the problem is on open close candle not include on reverse mode
i use code from Currency_Strength_v1.2.mq4
change line 483 with this :
if(((signal=="Buy" && !Reverse && op<cl) || (signal=="Sell" && Reverse && op>cl)) && CheckVolumeValue(TradingLots,symbol))
Change line 495 with this:
if(((signal=="Sell" && !Reverse && op>cl) || (signal=="Buy" && Reverse && op<cl)) && CheckVolumeValue(TradingLots,symbol))
just remove line 532 and line 538Thanks, man is working now but these alerts are so annoying, do you know how to get read of alerts?
Stadevata thank you for making an effort to make this work.just remove line 532 and line 538
or comment those line (add "//" in front of the code) like below
//Alert(symbol+"-Buy ==> TP: "+DoubleToStr(tpb,5)+" || SL: "+DoubleToStr(slb,5)+" <==");
//Alert(symbol+"-Sell ==> TP: "+DoubleToStr(tps,5)+" || SL: "+DoubleToStr(sls,5)+" <==");
Stadevata thank you for making an effort to make this work.
The only thing that I believe it needs is a "freeze after trading ones" can you add it please?
After opening one trade in all pairs stop trading option...so it wont place another trade until i drop the ea in the chart againi dunno what u mean about "freeze after trading ones" can u explain as detail
After opening one trade in all pairs stop trading option...so it wont place another trade until i drop the ea in the chart again
Pingu , i think this is the thread u mean on inbox .. so i try to write here
i think the problem is on open close candle not include on reverse mode
i use code from Currency_Strength_v1.2.mq4
change line 483 with this :
if(((signal=="Buy" && !Reverse && op<cl) || (signal=="Sell" && Reverse && op>cl)) && CheckVolumeValue(TradingLots,symbol))
Change line 495 with this:
if(((signal=="Sell" && !Reverse && op>cl) || (signal=="Buy" && Reverse && op<cl)) && CheckVolumeValue(TradingLots,symbol))