From 6c1cb92f1be284afc90f2c7c05e73eb60ad61179 Mon Sep 17 00:00:00 2001 From: Viacheslav Demydiuk Date: Mon, 28 Jul 2025 23:12:21 +0300 Subject: [PATCH] MtApi5: fixed typo 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 667ad424..d44d5f2b 100755 --- a/MtApi5/MtApi5Client.cs +++ b/MtApi5/MtApi5Client.cs @@ -2949,7 +2949,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); }