MtApi5: fix type in function iStochastic

This commit is contained in:
Viacheslav Demydiuk
2025-07-28 22:34:28 +03:00
parent 541fc2364b
commit 143cc33c60
+1 -1
View File
@@ -2969,7 +2969,7 @@ namespace MtApi5
{
Dictionary<string, object> cmdParams = new() { { "Symbol", symbol ?? string.Empty }, { "Period", (int)period },
{ "Kperiod", Kperiod }, { "Dperiod", Dperiod }, { "Slowing", slowing },
{ "MaMethod", (int)maMethod }, { "priceField", (int)priceField } };
{ "MaMethod", (int)maMethod }, { "PriceField", (int)priceField } };
return SendCommand<int>(ExecutorHandle, Mt5CommandType.iStochastic, cmdParams);
}