儲かる専門家。投資家が必要です。 - ページ 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/
ターミナルからアカウントを表示するには、トレードサーバ207.228.236.15:443 でログイン:11052, 投資家パスワード:4mntmcj を使用します。

 

今日、1つのミスを修正しました。そのため、もう1つのトレードが実行されず、約25,000の利益が失われました。

08:48:18 '11052': インスタントオーダー売り 19.90 GBPJPY at 217.23 sl: 0.00 tp: 215.71
08:48:21 '11052': リクエストがサーバーに受け入れられました。
08:48:21 '11052': 再クオート 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());
        }
   }
要点を押さえたコードに変更しました。