From 68f2a7ae07f88d0f4f1d84463747c716e388ac51 Mon Sep 17 00:00:00 2001 From: vdemydiuk Date: Wed, 24 Apr 2019 17:47:06 +0300 Subject: [PATCH] Issue #147: added non-documented types of trade operations: balance, credit, rebate --- MtApi/TradeOperation.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MtApi/TradeOperation.cs b/MtApi/TradeOperation.cs index 981b7233..105e8c1c 100755 --- a/MtApi/TradeOperation.cs +++ b/MtApi/TradeOperation.cs @@ -7,6 +7,9 @@ OP_BUYLIMIT = 2, OP_SELLLIMIT = 3, OP_BUYSTOP = 4, - OP_SELLSTOP = 5 + OP_SELLSTOP = 5, + OP_BALANCE = 6, + OP_CREDIT = 7, + OP_REBATE = 8 } }