Jump to content

Forex QUATTRO Robot


Recommended Posts

  • 2 weeks later...

my best settings could produce this...still a quite large drawdown...

 

Strategy Tester Report

ForexQuattro_eurusd_m15_v1_1~

AlpariUK-Micro-1 (Build 229)

 

Symbol EURUSD (Euro vs US Dollar)

Period 15 Minutes (M15) 2009.12.01 00:00 - 2010.12.07 23:45 (2009.12.01 - 2010.12.08)

Model Every tick (the most precise method based on all available least timeframes)

Parameters LotSize=1; TakeProfit=105; StopLoss=115; Magic=98469; gi_104=false; gi_108=1;

 

Bars in test 18798 Ticks modelled 7647917 Modelling quality 90.00%

Mismatched charts errors 0

 

Initial deposit 10000.00

Total net profit 13046.80 Gross profit 24739.40 Gross loss -11692.60

Profit factor 2.12 Expected payoff 126.67

Absolute drawdown 5802.40 Maximal drawdown 7686.40 (64.68%) Relative drawdown 64.68% (7686.40)

 

Total trades 103 Short positions (won %) 55 (56.36%) Long positions (won %) 48 (58.33%)

Profit trades (% of total) 59 (57.28%) Loss trades (% of total) 44 (42.72%)

Largest profit trade 1050.00 loss trade -1158.40

Average profit trade 419.31 loss trade -265.74

Maximum consecutive wins (profit in money) 11 (7329.60) consecutive losses (loss in money) 5 (-4.00)

Maximal consecutive profit (count of wins) 7329.60 (11) consecutive loss (count of losses) -2311.20 (3)

Average consecutive wins 2 consecutive losses 2

 

absolute drawdown of 5802 usd is horrendous by all means.

 

 

30 m ea is slightly better but from trade 35 to 60 its almost a straight equity line with most trades stopping out for even.

 

Strategy Tester Report

ForexQuattro_eurusd_m30_v1_1~

AlpariUK-Micro-1 (Build 229)

 

Symbol EURUSD (Euro vs US Dollar)

Period 30 Minutes (M30) 2009.12.01 00:00 - 2010.12.07 23:30 (2009.12.01 - 2010.12.08)

Model Every tick (the most precise method based on all available least timeframes)

Parameters LotSize=1; TakeProfit=105; StopLoss=45; Magic=98469; gi_104=false; gi_108=1;

 

Bars in test 9900 Ticks modelled 7647592 Modelling quality 90.00%

Mismatched charts errors 0

 

Initial deposit 10000.00

Total net profit 10745.60 Gross profit 15731.00 Gross loss -4985.40

Profit factor 3.16 Expected payoff 179.09

Absolute drawdown 515.00 Maximal drawdown 1859.60 (8.67%) Relative drawdown 12.73% (1749.00)

 

Total trades 60 Short positions (won %) 35 (57.14%) Long positions (won %) 25 (64.00%)

Profit trades (% of total) 36 (60.00%) Loss trades (% of total) 24 (40.00%)

Largest profit trade 1050.00 loss trade -452.80

Average profit trade 436.97 loss trade -207.73

Maximum consecutive wins (profit in money) 8 (4194.20) consecutive losses (loss in money) 4 (-901.00)

Maximal consecutive profit (count of wins) 4194.20 (8) consecutive loss (count of losses) -901.00 (4)

Average consecutive wins 3 consecutive losses 2

--

i suspect its breakout ea rehashed but i don't and can't read inside the ea only experts can tell if my view is correct.

 

--

Edited by halcyonn
Link to comment
Share on other sites

I see that the Quattro robot is one good (not the best) of the robot-based Moving Averages

This logic Quattro...

 

int g_period_124 = 8; // This is MA Period, EMA, Price close

..............................

double l_ima_0 = iMA(Symbol(), 0, g_period_124, 0, MODE_EMA, PRICE_CLOSE, 1);

for (gi_168 = 1; iMA(Symbol(), 0, g_period_124, 0, MODE_EMA, PRICE_CLOSE, gi_168) < Low[gi_168] - gi_128 * gi_156 * Point; gi_168++) {

}

for (gi_172 = 1; iMA(Symbol(), 0, g_period_124, 0, MODE_EMA, PRICE_CLOSE, gi_172) > High[gi_172] + gi_128 * gi_156 * Point; gi_172++) {

}

if (bTradeTime() && g_time_160 != Time[1] && CountMarketOrders() == 0) {

if (gi_168 >= gi_132 && gi_168 < gi_136 && Ask < l_ima_0 + gi_128 * gi_156 * Point) OpenMarketOrder(OP_BUY);

if (gi_172 >= gi_132 && gi_172 < gi_136 && Bid > l_ima_0 - gi_128 * gi_156 * Point) OpenMarketOrder(OP_SELL);

}

 

 

Key to victory is in how you do the proper settings (not static) on TakeProfit= xxx point and StopLoss=xxx point;

 

Set on the TP and SL always should carefully consider your focus and adjust well with the volatility of the market ...

 

If you can find a set of TP / SL is (it changes every 2 weeks because of market volatility) then you will find truth in the Expert Advisor that ..

 

So that is my opinion ..

I apologize if I am wrong opinion .. :)

Edited by SEFC

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

Sounds all very nice, but I loaded OOTB as per the earlier download and wondering why only one trade has been executed.

 

As I am a scalper, I am looking for more action, lol.

 

MA is not suitable for trade scalper .. maybe you should use the new EA price action in accordance with your typikal ..:) But so far I have not found the EA Price action is really good

 

The nature of the MA is a one time entry and will exit if the EA condition ordered ..

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...