From affb6b1a42ca633e19260398bc6fa4de939222fe Mon Sep 17 00:00:00 2001 From: "T. Todua" <7117978+ttodua@users.noreply.github.com> Date: Sun, 3 Dec 2023 17:35:09 +0400 Subject: [PATCH] add exerciseOptions from interface --- src/IB.CSharpApiClient/IBClientSocket.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/IB.CSharpApiClient/IBClientSocket.cs b/src/IB.CSharpApiClient/IBClientSocket.cs index 1af7eb8..31e3a55 100644 --- a/src/IB.CSharpApiClient/IBClientSocket.cs +++ b/src/IB.CSharpApiClient/IBClientSocket.cs @@ -7,5 +7,10 @@ public class IBClientSocket : EClientSocket, IEClientSocket public IBClientSocket(EWrapper wrapper, EReaderSignal eReaderSignal) : base(wrapper, eReaderSignal) { } + + public void exerciseOptions(int tickerId, Contract contract, int exerciseAction, int exerciseQuantity, string account, int ovrd) + { + throw new System.Exception("Not implemented"); + } } -} \ No newline at end of file +}