View Single Post
Old 2010-07-03, 01:48 PM   #42 (permalink)
rsmereka
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,990
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default Month 4 Results

After more than four months in my live account, The Channel Scalper has done well. Results:

-Start date Feb 23, 2010
-number of trades
Code:
select count() as cnt from closedtrade where magic = 40
database result:
row(1):Array ( [cnt] => 87 )
-average trades per month 21.75
-wins
Code:
select count() as wins from closedtrade where magic = 40 and pl + rollover > 0
database result:
row(1):Array ( [wins] => 75 )
-accuracy 86.21%
-total pips
Code:
select total(pips(ticket)) as p from closedtrade where magic = 40
database result:
row(1):Array ( [p] => 184.1 )
-PL
Code:
select total(pl + rollover ) as t from closedtrade where magic = 40
database result:
row(1):Array ( [t] => 1187.9 )
Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote