Forum

Advice deeply appreciated.

Dear Expert, In the attached EA, there are only 3 lines containing KL: input double KL = 2; // увеличение лота if(OrderProfit()<0) lot=OrderLots()*KL; if(profit<0) lot=LastLot*KL; How come when KL is given a value like 1, 2 or 3, the EA works fine; but if KL is given a value like 1.3, 1.5, etc

Positions closed seconds after they are opened in Build 600. Please help.

Dear Modertor, My EA worked fine with Build 509 and before. With Build 600 and Build 604 some opened positions will close immediately after they are open at a loss. The EA is preset to open positions only. Why this immediate closing? Please help. 1. Can you debug Build 600 and Build 604 so that they

How can I stay with Build 509?

Could some expert teach me how to reverse my Build to 509 and stay with 509 until Build 600/604 are bug-free? Thank you very much! Jim

Why different mDD numbers?

Dear Expert, Would you please advise? Why for the same live account, the mDD on the Trade page is -154.89 while on the statement it says mDD is 15.90 (Please see above image)? Thank you for your teaching. Best, EAgreat

Why this behavior?

Dear generous mt4 expert, I use a modified public EA (see attached) and I set spacing to 30 pips so that the positions are 30 pips apart. When I run the EA, sometimes it gives the correct result (see below): all positions are 30 pips apart; sometimes it gives the incorrect result (see attached)

Why this phenomenon?

I have two live accounts with IBFX. In each I have two or three different EAs running on different. Today I saw that the EA that ran on AUDUSD in account 1 was not on the chart and the EA that ran on AUDUSD in account 2 was not on the chart either. The two EAs are different and they are in different

Can this EA result be real?

Hi, Experts, Can this EA result be real? Will any broker allow it to be used without doing something to make it lose

Could the expert point out what causes the extra unintended order-modify?

The error: Please see position 11 above. After opening the position, it is correctly followed by a modify that adds a tp, then it wrongly adds another modify that changes tp value, gives sl a value that equals tp. The second modified was not intended at all. What in the code below causes the error

What computer will let me open 40 to 50 demo accounts at the same time to test differents EAs?

Please advise: What computer will let me open 40 to 50 demo accounts at the same time to test differents EAs? What memory is minimum? What processor is needed? Many thanks. forexjim

A winning order repeats itself, a losing buy order is followed by a sell order, and a losing sell order is followed by a buy order. Is this EA right?

Hi, I am learning. To have my EA do: "A winning order repeats itself, a losing buy order is followed by a sell order , and a losing sell order is followed by a buy order." Is below right? int order; if (Ballance!=0.0) { if (Ballance>AccountBalance() && OrderType()==OP_BUY) {