From c7b8956c9916e5ec18fcffdc3a45203b3b0c1c21 Mon Sep 17 00:00:00 2001 From: Viacheslav Demydiuk Date: Mon, 28 Jul 2025 22:51:35 +0300 Subject: [PATCH] MtApi5: fixed typo in function iChaikin --- MtApi5/MtApi5Client.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MtApi5/MtApi5Client.cs b/MtApi5/MtApi5Client.cs index fae82223..eb27bde5 100755 --- a/MtApi5/MtApi5Client.cs +++ b/MtApi5/MtApi5Client.cs @@ -2644,7 +2644,7 @@ namespace MtApi5 { Dictionary 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(ExecutorHandle, Mt5CommandType.iChaikin, cmdParams); }