-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having some trouble with IBKR module - historical feed and charts printing #73
Comments
Which version are you using of roboquant? The historic data is perhaps related to issue #69, but that is only fixed in the 2.2.0-SNAPSHOT release. |
Hi, |
I just did a quick test, and no problems retrieving historic data:
Same as you, I see all the data logger in the IB Gateway. So in your case, it is not a subscription issue I guess. Is there any output on the console that something goes wrong? |
Possible version differences? For IBKR I run 10.19, both the installed TWS API and IB GW. For the TWS API, this is also the stable version. |
Hello, I've attempted to implement the following code: val symbols = listOf("TRUL")
val assets = symbols.map { Asset(it, AssetType.STOCK, "CAD")}
val feed = IBKRHistoricFeed()
feed.retrieve(assets)
feed.waitTillRetrieved()
println("Historic feed with ${feed.timeline.size} events and ${feed.assets.size} assets")
feed.assets However, I'm still receiving a notification stating that there is no data subscription. I suspect there might be an issue with how I've mapped the assets. Could you please assist me in reviewing the asset mapping for Canadian stocks? Additionally, I recommend updating the link from IB Gateway in the Jupyter notebook, as it currently directs to the 10.27 version instead of the 10.19 version. Your help in resolving this matter is greatly appreciated. Thank you for your assistance. |
I remember there is some IBKR account setting that you want to share you data-subscription with the paper-trade account. |
Hello,
I've been testing the functionality of the IBKR module and have noticed a couple of discrepancies. While everything seems to be working fine, I've encountered issues with the historical data feed not being displayed in the notebook, even though I can see API messages being sent to the IB Gateway. Additionally, the charts are not appearing as expected.
I've set up a paper trading account and successfully logged in using the provided username and password. Despite this, the historical data isn't showing up in the notebook, and the charts are not being printed.
Could you assist me in troubleshooting this matter?
The API responds to the call
But there is nothing being printed out. Just an empty []
The charts aren't being created as well
Thank you.
The text was updated successfully, but these errors were encountered: