Profit/Loss - 221/3 - page 7

 

4 now this EA's only 4 testing

Fist of all, we must change volume of Lots!

Because NO 1 REAL BROKER WILL NOT OPEN 4 U 10 TRADES EVERY MINUT BY 0.1 LOTS EACH!!!

Brokers talk about at least 20 seconds pause, but in real life it must be not less than 1 minut /Experience/. Especially for 0.1 lot. Don't forget, that on 0.1 u're tradin' against a broker HIMSELF and as he'll see numerous small trades from u he'll finally switch u off the possibility of autotrading. Thay have such a right.

So. Iver we must chang a lot size, or trading frequency.

 

test of kurkatrader

hi,

i am testing kurkatrade on demo account.

bad result, i attach statement, i am using default parameters.

can you help me to use corrrectly EA ?

thank you

giapel

Files:
 

testing above

i 'am sorry, i ' ve changed parameters. now i ' am working with default.

giapel

 

Today is crazy for this one.... almost 200 trades. is anyone else having the same results?

 

Kurka,

i have noticed that for hightrends, you only check SAR signals, thats why it keeps takin trades. I think you need to recheck your SAR conditions as well.

Kurka Fund:
Today is crazy for this one.... almost 200 trades. is anyone else having the same results?
 
Kurka Fund:
Today is crazy for this one.... almost 200 trades. is anyone else having the same results?

Yes, after 9hr CET, trend turn USD and very low SL - many small losss ;-(

Disable trading if turn trend - angle ema?

 

Mistake

Kurka!

You wrote, that Your EA dosn't closes trades correct. That can be because of the following:

int close_position()

{

int i, cnt = OrdersTotal();

for (i=0; i<cnt; i++) {

in MT opened trades counts 0,1,2 etc. So, if U want to close ALL Your positions U'll better use:

for (i=cnt-1; i>=0; i--) {

 

Mistake2

if (OrderType() == OP_SELL) {

OrderClose(OrderTicket(),OrderLots(),Ask,Slippage,Red);//was Bid

}

if (OrderType() == OP_BUY) {//was else. What for?

OrderClose(OrderTicket(),OrderLots(),Bid,Slippage,Green);//was Ask

}

P.S. I've just started to chek.

 

Mistake3

if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES)==true)

{

if (OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber)

{

if (OrderType() == OP_BUY) buy_orders++;

if (OrderType() == OP_SELL) sell_orders++;

}

}

 

Gone 4 beer. Till tomorrow!

Reason: