実現したいこと
設定したエントリー時間にGOLDを売り、設定したクローズ時間に決済できるようにしたいです
発生している問題・分からないこと
設定したエントリー時間に機能しなくて困っている。銘柄名を間違えているとかは確認したので多分ないと思います
該当のソースコード
/+------------------------------------------------------------------+ //| ThursdayTradeEA.mq5 | //| Copyright 2024, User | //| | //+------------------------------------------------------------------+ #property copyright "Copyright 2024, User" #property link "https://www.example.com" #property version "1.00" #include <Trade\Trade.mqh> //--- Global Variables and Object Definitions CTrade trade; input double lotSize = 0.2; // Lot size input string tradeSymbol = "GOLD"; // Trade symbol (confirmed with XM) input string entryTime = "05:52"; // Entry time (Japan time) input string exitTime = "07:40"; // Close time (Japan time) //--- Global Variables bool tradeOpened = false; int timeOffset = 6 * 3600; // Offset for GMT+3 to Japan time (+6 hours) //+------------------------------------------------------------------+ //| Initialization function | //+------------------------------------------------------------------+ int OnInit() { // Set a timer for every minute EventSetTimer(60); return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Clean up on Deinitialization | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { EventKillTimer(); } //+------------------------------------------------------------------+ //| Timer handler function | //+------------------------------------------------------------------+ void OnTimer() { // Get the current server time datetime currentTime = TimeCurrent(); MqlDateTime tm; TimeToStruct(currentTime, tm); // Add the time offset to convert GMT+3 server time to Japan time datetime japanTime = currentTime + timeOffset; string currentTimeStr = TimeToString(japanTime, TIME_MINUTES); // Check if it's Thursday if (tm.day_of_week != 4) return; // Open a sell position at the entry time if (currentTimeStr == entryTime && !tradeOpened) { if (trade.Sell(lotSize, tradeSymbol)) // Execute a sell order { tradeOpened = true; } } // Close the sell position at the exit time if (currentTimeStr == exitTime && tradeOpened) { if(trade.PositionClose(tradeSymbol)) { tradeOpened = false; } } } //+------------------------------------------------------------------+
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
Wifi環境やXM内部の問題は考えづらかったです
補足
特になし
あなたの回答
tips
プレビュー