From 8695e0f3e443154fda7c9bcc5046ad6e50d56c74 Mon Sep 17 00:00:00 2001 From: Daemon_Hell Date: Wed, 18 Mar 2015 15:42:20 +0500 Subject: [PATCH] Additional execution sides Additional execution sides to support IB Stock Borrow/Loan --- Krs.Ats.IBNet/Enums/ExecutionSide.cs | 29 +++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/Krs.Ats.IBNet/Enums/ExecutionSide.cs b/Krs.Ats.IBNet/Enums/ExecutionSide.cs index dac69e1..8dc777b 100644 --- a/Krs.Ats.IBNet/Enums/ExecutionSide.cs +++ b/Krs.Ats.IBNet/Enums/ExecutionSide.cs @@ -17,6 +17,33 @@ public enum ExecutionSide /// /// Securities were sold. /// - [Description("SLD")] Sold + [Description("SLD")] Sold, + + /// + /// Securities were lent. + /// + [Description("LEND")] Lend, + + /// + /// Securities were borrowed. + /// + [Description("BORROW")] Borrow, + + /// + /// Securities were recalled. + /// + [Description("RECALL")] Recall, + + /// + /// Securities were rerated. + /// + [Description("RERATE")] + Rerate, + + /// + /// Securities were returned. + /// + [Description("RETURN")] + Return } } \ No newline at end of file