Profitable expert. Investors are needed. - page 22

 
Технические подробности отчета вдогонку...
 
Summary: 
Deposit/Withdrawal: 10 000.00 Credit Facility: 0.00   
Closed Trade P/L: 2 428.10 Floating P/L: -707.65 Margin: 530.00 
Balance: 12 428.10 Equity: 11 720.45 Free Margin: 11 190.45 
  
Details: 
 
Gross Profit: 4 161.22 Gross Loss: 1 733.12 Total Net Profit: 2 428.10 
Profit Factor: 2.40 Expected Payoff: 1.63   
Absolute Drawdown: 0.00 Maximal Drawdown: 134.40 (1.17%) Relative Drawdown: 1.17% (134.40) 
  
Total Trades: 1490 Short Positions (won %): 920 (66.41%) Long Positions (won %): 570 (68.25%) 
Profit Trades (% of total): 1000 (67.11%) Loss trades (% of total): 490 (32.89%) 
Largest profit trade: 43.39 loss trade: -27.41 
Average profit trade: 4.16 loss trade: -3.54 
Maximum consecutive wins ($): 16 (245.16) consecutive losses ($): 9 (-113.17) 
Maximal consecutive profit (count): 245.16 (16) consecutive loss (count): -113.17 (9) 
Average consecutive wins: 4 consecutive losses: 2

Regards, okfx

 

Hello all!

For ease of perception. The monitoring link on Onyx. The risk is big - so is the profit. You can adjust both.

http://onix-trade.net/ext/userbar/1832.png

Regards, okfx

 
I would like to remind you of C-System.

Net profit to date is $69408.69 (694.09%). Statment: http://www.investmoney.kiev.ua/
To view account from terminal use login: 11052, investor password: 4mntmcj on trade server 207.228.236.15:443

 

Corrected one mistake today, because of which one more trade was not executed and about 25 thousand profit was lost.

08:48:18 '11052': instant order sell 19.90 GBPJPY at 217.23 sl: 0.00 tp: 215.71
08:48:21 '11052': request was accepted by server
08:48:21 '11052': requote 217.20 / 217.28 for open sell 19.90 GBPJPY at 217.23 sl: 0.00 tp: 215.71
08:48:50 '11052': pending order sell limit 19.90 GBPJPY at 217.72 sl: 0.00 tp: 216.20
08:48:50 '11052': request was accepted by server
08:48:50 '11052': request in process
08:48:50 '11052': order was opened : #361577 sell limit 19.90 GBPJPY at 217.72 sl: 0.00 tp: 216.20

Due to not providing requotes, a record of position opening was triggered and as a result, instead of sell, a sell limit was set.

It was:

ticket=OrderSend();
GlobalVariableSet(Symbol() + Period() + "Buy" + symb, MAGIC);

Changed to:

ticket=OrderSend();
if(ticket>0)
   {
     if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES))
        {
          GlobalVariableSet(Symbol() + Period() + "Buy" + symb, MAGIC);
          Print(symb+" BUY order opened : ",OrderOpenPrice());
        }
   }
I changed the code to get the gist of it.
Reason: