MtApi5: fixed typo in function iStochastic

This commit is contained in:
Viacheslav Demydiuk
2025-07-28 23:12:21 +03:00
parent ff871e5e06
commit 6c1cb92f1b
+1 -1
View File
@@ -2949,7 +2949,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);
}