Edit Your Comment
Strategy testing MQL4 at specific times
तबसे मेंबर है Sep 20, 2022
22 पोस्टों
Feb 20, 2023 at 11:02
तबसे मेंबर है Sep 20, 2022
22 पोस्टों
Can you post your function for checking the time?
Here's an example function that checks if can trade depending on the hours. Do you use days as well or just hours ?
void checkIfCanTrade() {
datetime time_now = TimeCurrent();
datetime startTime = StrToTime(inptV.start_hours);
datetime stopTime = StrToTime(inptV.stop_hours);
if (inptV.useTradingHours)
{
if (time_now >= startTime && time_now <= stopTime)
{
tickV.allowed_to_trade = true;
if (dbg) {
Print("Trading hours allowed");
}
}
else
{
if (dbg) {
Print("Trading hours NOT allowed");
}
tickV.allowed_to_trade = false;
}
}
else
{
tickV.allowed_to_trade = true;
}
}
start_hours and stop hours are declared like strings:
string start_hours = "00:00"; // Start
string stop_hours = "23:59"; // Stop
I hope this helps.
Here's an example function that checks if can trade depending on the hours. Do you use days as well or just hours ?
void checkIfCanTrade() {
datetime time_now = TimeCurrent();
datetime startTime = StrToTime(inptV.start_hours);
datetime stopTime = StrToTime(inptV.stop_hours);
if (inptV.useTradingHours)
{
if (time_now >= startTime && time_now <= stopTime)
{
tickV.allowed_to_trade = true;
if (dbg) {
Print("Trading hours allowed");
}
}
else
{
if (dbg) {
Print("Trading hours NOT allowed");
}
tickV.allowed_to_trade = false;
}
}
else
{
tickV.allowed_to_trade = true;
}
}
start_hours and stop hours are declared like strings:
string start_hours = "00:00"; // Start
string stop_hours = "23:59"; // Stop
I hope this helps.
Empower your trading potential with RoboFxLearning - where knowledge meets success.

*व्यवसायिक इस्तेमाल और स्पैम को ब्रदाश नहीं किया जाएगा, और इसका परिणाम खाता को बन्द करना भी हो सकता है.
टिप: किसी चित्र या यूट्यूब या URL को पोस्ट करने से वे अपने आप आपके पोस्ट में आजाएगा!
टिप: @ चिन्ह को टाइप करें उपभोगता के नाम को अपने आप करने के लिए जो इस चर्चा में भाग ले रहा है.