MtApi5: fixed typo in function iChaikin

This commit is contained in:
Viacheslav Demydiuk
2025-07-28 22:51:35 +03:00
parent b89f00d310
commit c7b8956c99
+1 -1
View File
@@ -2644,7 +2644,7 @@ namespace MtApi5
{
Dictionary<string, object> cmdParams = new() { { "Symbol", symbol ?? string.Empty }, { "Period", (int)period },
{ "FastMaPeriod", fastMaPeriod }, { "SlowMaPeriod", slowMaPeriod},
{ "MaMethod", (int)maMethod }, { "appliedVolume", (int)appliedVolume } };
{ "MaMethod", (int)maMethod }, { "AppliedVolume", (int)appliedVolume } };
return SendCommand<int>(ExecutorHandle, Mt5CommandType.iChaikin, cmdParams);
}