InterReact
InterReact copied to clipboard
Reactive C# API to Interactive Brokers Trader Workstation.
It would be nice to have a NuGet distribution. Charles [email protected]
In HistoricalBarSize class, OneSecond is set as "1 sec". However as stated in IBKR error message: "Historical data bar size setting is invalid. Legal ones are: 1 secs, 5 secs,...
Semaphore is not compatible with Linux so a migration to the use of Mutex or TaskCompletionSource would be a good thing.
Market data from RequestHistoricalData has a lower resolution than the one in TWS. Inspecting a specific bar in TWS displays higher res data than the bar data received using the...
1 Added the project title 2 Added the function interfaces for RequestOpenOrders() and GetCompleteOrdersAsync() 3 Changed PlaceOrder() to Async()
How to implement the below function points? 1 List GetOpeningOrders(string symbol, startDt, endDt = DateTime.Now) 2 Order CancelOrder(int orderId), GetCanceledOrders() 3 List GetCompletedOrders(startDt, endDt = DateTime.Now) 4 List GetSymbols(int number...