MT5 Time frame is not giving the right figure
-
MT5 Timeframe is not giving the right figure from H1 above

For instance above comment should show 60 on H1 but this is what it shows

Project: https://fxdreema.com/shared/24HiE65td
Any other experiencing this?
-
This is how MT5 works, you would have to convert to see a more readable format, from CHAT GPT:
string TimeframeToString(int timeframeValue)
{
switch (timeframeValue)
{
case 1: return "1 minute";
case 5: return "5 minutes";
case 15: return "15 minutes";
case 30: return "30 minutes";
case 60: return "1 hour";
case 240: return "4 hours";
case 1440: return "1 day";
case 10080: return "1 week";
case 43200: return "1 month";
default: return "Unknown timeframe";
}
} -
Is what I have done wrong? Shouldn't I get 60 printed if I load the EA on H1 chart? I guess it's a bug.
-
No, because MT5 is different to MT4, it works the same, you just can't manually read it the same