Hey pipdetector,
A follow-up to my previous post.
Last night was a really good example of the accuracy of MegaDroid verses EB-Turbo. All trade times are EDT (GMT-4).
Here is the MegaDroid trade:
Code:
select datetime(opendatime, 'localtime') as open, datetime(closedatime, 'localtime') as close, openprice, closeprice, lot, pips(ticket) as pips, pl, rollover
, pl + rollover
as tot from closedtrade where magic like '30%' and open >= '2009-11-02 00:00:00'
database result:
row(1):Array ( [open] => 2009-11-02 17:02:00 [close] => 2009-11-03 02:03:00 [openprice] => 1.4774 [closeprice] => 1.47739 [lot] => 0.29 [pips] => 0.1 [pl] => 0.29 [rollover] => -0.12 [tot] => 0.17 )
This was a sell order that was in play 9 hours and one minute with a very lackluster win.
Here are the EB-Turbo trades:
Code:
select datetime(opendatime, 'localtime') as open, datetime(closedatime, 'localtime') as close, openprice, closeprice, lot, pips(ticket) as pips, pl, rollover
, pl + rollover
as tot from closedtrade where magic like '8%' and open >= '2009-11-02 00:00:00'
database result:
row(1):Array ( [open] => 2009-11-02 21:31:00 [close] => 2009-11-02 22:36:00 [openprice] => 1.47934 [closeprice] => 1.47834 [lot] => 0.1 [pips] => 10.0 [pl] => 10.0 [rollover] => 0.0 [tot] => 10.0 )
row(2):Array ( [open] => 2009-11-02 21:31:00 [close] => 2009-11-02 22:31:00 [openprice] => 1.47936 [closeprice] => 1.47836 [lot] => 0.1 [pips] => 10.0 [pl] => 10.0 [rollover] => 0.0 [tot] => 10.0 )
row(3):Array ( [open] => 2009-11-02 21:31:00 [close] => 2009-11-02 22:31:00 [openprice] => 1.47935 [closeprice] => 1.47835 [lot] => 0.1 [pips] => 10.0 [pl] => 10.0 [rollover] => 0.0 [tot] => 10.0 )
row(4):Array ( [open] => 2009-11-02 23:24:00 [close] => 2009-11-03 02:03:00 [openprice] => 1.47808 [closeprice] => 1.47708 [lot] => 0.1 [pips] => 10.0 [pl] => 10.0 [rollover] => 0.0 [tot] => 10.0 )
row(5):Array ( [open] => 2009-11-02 23:24:00 [close] => 2009-11-03 02:03:00 [openprice] => 1.47804 [closeprice] => 1.47704 [lot] => 0.1 [pips] => 10.0 [pl] => 10.0 [rollover] => 0.0 [tot] => 10.0 )
row(6):Array ( [open] => 2009-11-02 23:24:00 [close] => 2009-11-03 02:03:00 [openprice] => 1.47813 [closeprice] => 1.47713 [lot] => 0.1 [pips] => 10.0 [pl] => 10.0 [rollover] => 0.0 [tot] => 10.0 )
EB-Turbo's trades where also sell orders, so both EA's were playing the same side.
EB-Turbo started four and a half hours later than MegaDroid. As a result, the opening price was a lot higher when EB-Turbo entered (the pair moved higher after MegaDroid entered the trade).
Actually EB-Turbo entered two groups of three trades. The first group closed in one hour and five minutes. The second group started almost two hours after the close of the first group. The second group trade lasted about two and a half hours. All EB-Turbo trades closed at exactly 10 pip gain each.
About the only complaint about EB-Turbo that I have at this
point 
is that it always opens at least three trades so I end up paying more in terms of the
spread 
.
Rick