MQL5: don't use EMPTY_VALUE as initial value for times

This commit is contained in:
Viacheslav Demydiuk
2025-07-25 17:52:06 +03:00
parent 78b4b7039b
commit 541fc2364b
2 changed files with 1 additions and 1 deletions
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1829,7 +1829,7 @@ string Execute_ObjectCreate()
datetime times[30];
double prices[30];
ArrayInitialize(times, EMPTY_VALUE);
ArrayInitialize(times, 0);
ArrayInitialize(prices, EMPTY_VALUE);
JSONArray* times_jo = jo.p.getArray("Times");