MyTradingHistory
- ライブラリ
- Max Timur Soenmez
- バージョン: 1.0
- アクティベーション: 10
MQL5 EA向けに、開発者が主要な取引統計情報へ簡単にアクセスできるライブラリです。
ライブラリで利用可能なメソッド:
アカウントデータと利益:
- GetAccountBalance() : 現在の口座残高を返します。
- GetProfit() : 全取引の純利益を返します。
- GetDeposit() : 入金の総額を返します。
- GetWithdrawal() : 出金の総額を返します。
取引分析:
- GetProfitTrades() : 利益の出た取引数を返します。
- GetLossTrades() : 損失の出た取引数を返します。
- GetTotalTrades() : 実行された全取引数を返します。
- GetShortTrades() : ショートポジションの取引数を返します。
- GetLongTrades() : ロングポジションの取引数を返します。
- GetWinLossRatio() : 勝ち取引と負け取引の比率を返します。
- GetAverageProfitTrade() : 利益の出た取引1回あたりの平均利益を返します。
- GetAverageLossTrade() : 損失の出た取引1回あたりの平均損失を返します。
- GetROI() : 投資収益率を計算します。
- GetLargestProfitTrade() : 単一取引の最大利益を返します。
- GetLargestLossTrade() : 単一取引の最大損失を返します。
- GetShortTradesWon() : 成功したショートポジション取引の割合を返します。
- GetLongTradesWon() : 成功したロングポジション取引の割合を返します。
取引利益配列:
- GetTradeProfitArray(double &outputArray[]) : 各取引の利益を配列として返し、詳細な分析が可能です。
サンプルコードは以下にあります:
// Import the external MyTradingHistory.ex5 module #import "MyTradingHistory.ex5" void UpdateValues(void); // Updates the trading data from the MyTradingHistory library. EXECUTE THIS EVERY TIME YOU WANT TO UPDATE THE VALUES, e.g. after closing a trade or before retreiving the value for the first time. void GetTradeProfitArray(double &outputArray[]); // Retrieves an array of profits from closed trades double GetAccountBalance(void); // Returns the current account balance double GetProfit(void); // Returns the net profit double GetDeposit(void); // Returns the total deposit amount double GetWithdrawal(void); // Returns the total withdrawal amount int GetProfitTrades(void); // Returns the number of profitable trades int GetLossTrades(void); // Returns the number of loss trades int GetTotalTrades(void); // Returns the total number of trades int GetShortTrades(void); // Returns the number of short trades int GetLongTrades(void); // Returns the number of long trades double GetWinLossRatio(void); // Returns the win-to-loss ratio double GetAverageProfitTrade(void); // Returns the average profit per trade double GetAverageLossTrade(void); // Returns the average loss per trade double GetROI(void); // Returns the return on investment (ROI) double GetLargestProfitTrade(void); // Returns the largest profit from a single trade double GetLargestLossTrade(void); // Returns the largest loss from a single trade double GetShortTradesWon(void); // Returns the percentage of short trades won double GetLongTradesWon(void); // Returns the percentage of long trades won #import // OnInit is executed when the script starts int OnInit() { // Update internal data from the imported module UpdateValues(); // Prepare a string to display account and trade summary string output = "Account Balance: " + DoubleToString(GetAccountBalance(), 2) + "\n" + "Net Profit: " + DoubleToString(GetProfit(), 2) + "\n" + "Deposit: " + DoubleToString(GetDeposit(), 2) + "\n" + "Withdrawal: " + DoubleToString(GetWithdrawal(), 2) + "\n" + "Profit Trades: " + IntegerToString(GetProfitTrades()) + "\n" + "Loss Trades: " + IntegerToString(GetLossTrades()) + "\n" + "Total Trades: " + IntegerToString(GetTotalTrades()) + "\n" + "Short Trades: " + IntegerToString(GetShortTrades()) + "\n" + "Long Trades: " + IntegerToString(GetLongTrades()) + "\n" + "Win/Loss Ratio: " + DoubleToString(GetWinLossRatio(), 2) + "\n" + "Average Profit per Trade: " + DoubleToString(GetAverageProfitTrade(), 2) + "\n" + "Average Loss per Trade: " + DoubleToString(GetAverageLossTrade(), 2) + "\n" + "ROI: " + DoubleToString(GetROI(), 2) + "\n" + "Largest Profit Trade: " + DoubleToString(GetLargestProfitTrade(), 2) + "\n" + "Largest Loss Trade: " + DoubleToString(GetLargestLossTrade(), 2) + "\n" + "Short Trades Won: " + DoubleToString(GetShortTradesWon(), 2) + "%\n" + "Long Trades Won: " + DoubleToString(GetLongTradesWon(), 2) + "%\n"; // Add trade profit array data to the output output += "Trade Profit Array (First 5 Trades): "; double tradeProfitArray[]; // Declare an array to store trade profit data GetTradeProfitArray(tradeProfitArray); // Fetch trade profit data // Loop through the first 5 trades and append their profit values to the output for (int i = 0; i < MathMin(5, ArraySize(tradeProfitArray)); i++) { output += DoubleToString(tradeProfitArray[i], 2) + ", "; } // Append the last trade's profit value output += "...\nLast Closed Trade: "; int size = ArraySize(tradeProfitArray); // Get the size of the trade profit array if (size > 0) output += DoubleToString(tradeProfitArray[size - 1], 2); // Append the last trade's profit else output += "No trades available."; // Handle the case where no trades exist // Display the summary as a comment on the chart Comment(output); // Signal successful initialization return(INIT_SUCCEEDED); }
ご意見をお待ちしております。購入前後にご質問やご意見をお聞かせください。
https://www.mql5.com/en/users/maxsonm
