• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion Currency Strength

Sdmaster

Member
Credit Hunter
Credits
0
I 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)
 

Attachments

Hmmm in normal trade mode it opens a lot of trades immediately but in the reverse mode, it opens only 3 trades for me ...bug I guess
Can someone fix it I think it is worth it
 
Last edited:
I 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 do

rada77882gmail.com
 
I 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 do

rada7788 gmail.com
 
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))
 

Attachments

Last edited:
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))

Thanks, man is working now but these alerts are so annoying, do you know how to get read of alerts?
 
Thanks, man is working now but these alerts are so annoying, do you know how to get read of alerts?
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)+" <==");
 
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?
 
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?

i 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

its quiet confuse me ..
so after have 28 open order the ea will stop trade .. thats what u mean ?
 
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))


When I changed the size of the transaction from 0.1 to 0.01, some of the transactions opened with 0.01 and some with 0.01.
I'm after deleting an account with real money I want to put this robot on real account if it's possible that everything will only be 0.01
 
Back
Top