View Single Post
Old 2010-08-02, 12:49 PM   #47 (permalink)
rsmereka
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


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

After more than five months in my live/real money account, The Channel Scalper continues to do 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] => 105 )
-average trades per month 21
-wins
Code:
select count() as wins from closedtrade where magic = 40 and pl + rollover > 0
database result:
row(1):Array ( [wins] => 93 )
-accuracy 88.57%
-total pips
Code:
select total(pips(ticket)) as p from closedtrade where magic = 40
database result:
row(1):Array ( [p] => 256.1 )
-PL
Code:
select total(pl + rollover ) as t from closedtrade where magic = 40
database result:
row(1):Array ( [t] => 1923.91 )
Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote