Kurka Trader - GREEDY BS - page 2

 

Something is up

In every backtesting scenario I do, this EA turns 10k into at least 100k in less than 6 months. The problem is that it makes more money when the win % is lower. I can eaisly make it turn out a 90+% win ratio. but it does not do nearly at good...... is there any backtesting flaw that mekes this happen.

Files:
 

OOPS Wrong Report

Here is the Summary, Report is too large to upload..

Bars in test 577831

Ticks modelled 897101

Modelling quality 90.00%

Initial deposit 10000.00

Total net profit 612626.28

Gross profit 2128578.89

Gross loss -1515952.61

Profit factor 1.40

Expected payoff 128.92

Absolute drawdown 1272.40

Maximal drawdown 312344.43 (36.78%)

Relative drawdown 36.78% (312344.43)

Total trades 4752

Short positions (won %) 905 (79.34%)

Long positions (won %) 3847 (54.20%)

Profit trades (% of total) 2803 (58.99%)

Loss trades (% of total) 1949 (41.01%)

Largest

profit trade 22420.99

loss trade -102152.00

Average

profit trade 759.39

loss trade -777.81

Maximum

consecutive wins (profit in money) 107 (4930.87)

consecutive losses (loss in money) 69 (-45173.60)

Maximal

consecutive profit (count of wins) 101144.30 (18)

consecutive loss (count of losses) -215039.38 (5)

Average

consecutive wins 6

consecutive losses 4

 

I think that I figured it out,

Its the trailing stop.....Does it count as a loss if your trailing stop is hit at a profit ???

 

Could you post an EA so we can test it?

 

Imagine this gross loss starts happening at the beginning of your trading! Very big drawdown? Largest loosing trade > 100.000! What sizes did it trade?

 

The lots traded go up with the account size.

calculation

Risk = 10%

MaxTrades = 10

(FreeMargin * Risk) / MaxTrades

So in this case the Largest position is only 1% of Freemargin

 

Anyone following this thread please help....

I need to figure out how to open new orders a certian number of pips away from the previous order.... example

Go long @ 1.3300

Long again if Ask = 1.3290

and again every -10 pips.

I figured out how to manage all the orders when they are opened and close them at the same time. but currently it is opening orders at every pip increment along the way...

 

Could you post an EA so we can test it?

 
adria:
Could you post an EA so we can test it?

I will post when It is complete....

I have posted in the past, it gets kinda hectic when you post a non complete EA. Everyone makes a different ver and by the time you get it done it does not do what you set out to do. Too many cooks in the kitchen....

Plus I want to lean how to program a complete EA... And by the looks of it this will triple you account size every month with minimal drawdown. Only places orders at 1% of freemangin.

 
Kurka Fund:
Anyone following this thread please help....

I need to figure out how to open new orders a certian number of pips away from the previous order.... example

Go long @ 1.3300

Long again if Ask = 1.3290

and again every -10 pips.

I figured out how to manage all the orders when they are opened and close them at the same time. but currently it is opening orders at every pip increment along the way...

this way to open order is similar to goblin, in Goblin you open new orders a certain of pips away from previous order : ex:

if ((Bid-LastPrice)>=Pips*Point

giapel

Reason: