Issue #284: MtApi4/MQL4 - added function GetSymbols

This commit is contained in:
Viacheslav Demydiuk
2025-09-27 17:29:00 +03:00
parent 96674d8763
commit 92322e866e
8 changed files with 1973 additions and 1787 deletions
+6
View File
@@ -502,6 +502,12 @@ namespace MtApi
Dictionary<string, object> cmdParams = new() { { "Pool", (int)pool} };
return SendCommand<List<MtOrder>>(ExecutorHandle, MtCommandType.GetOrders, cmdParams);
}
public List<string>? GetSymbols(bool selected)
{
Dictionary<string, object> cmdParams = new() { { "Selected", selected } };
return SendCommand<List<string>>(ExecutorHandle, MtCommandType.GetSymbols, cmdParams);
}
#endregion
#region Checkup