From 143cc33c6064dd15b997f040e78b356ae4f4fede Mon Sep 17 00:00:00 2001 From: Viacheslav Demydiuk Date: Mon, 28 Jul 2025 22:34:28 +0300 Subject: [PATCH] MtApi5: fix type in function iStochastic --- MtApi5/MtApi5Client.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MtApi5/MtApi5Client.cs b/MtApi5/MtApi5Client.cs index 675bf9b6..3eb49b69 100755 --- a/MtApi5/MtApi5Client.cs +++ b/MtApi5/MtApi5Client.cs @@ -2969,7 +2969,7 @@ namespace MtApi5 { Dictionary 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(ExecutorHandle, Mt5CommandType.iStochastic, cmdParams); }