一个有利可图的专家。需要投资者。 - 页 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

问候,okfx

 

大家好!

为了便于感知。Onyx上的监控链接。风险很大--利润也很大。你可以同时调整。

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

问候,okfx

 
我想提醒你的是 C-系统.

到目前为止,净利润为69408.69美元(694.09%) Statment:http://www.investmoney.kiev.ua/
要从终端查看账户,请使用登录名:11052,投资者密码:4mntmcj,交易服务器207.228.236.15:443

 

今天纠正了一个错误,因为这个错误,还有一笔交易没有执行,损失了大约2.5万美元的利润。

08:48:18 '11052': 即时订单在217.23卖出 19.90 GBPJPY sl: 0.00 tp: 215.71
08:48:21 '11052': 请求被服务器接受了
08:48:21 '11052': re-ote 217.20 / 217.28 for opensell 19.90 GBPJPY at 217.23 sl: 0.00 tp: 215.71
08:48:50 '11052': 挂单卖出限额 19.90 GBPJPY at 217.72 sl: 0.00 tp: 216.20
08:48:50 '11052': 请求被服务器接受了
08:48:50 '11052': 请求正在进行中
08:48:50 '11052': 订单被打开 : #361577卖出限额 19.90 GBPJPY at 217.72 sl: 0.00 tp: 216.20

由于没有提供重新报价,触发了开仓记录,结果是没有卖出,而是设置了卖出限制

它是。

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

改为:

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());
        }
   }
我修改了代码,以了解它的要点。