¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Any reason this moving average isnt adding up?
Heya, heres the code for my moving average. A 50 ema def movingAverages (DF, b = 50): lines = DF.copy() lines["MA_50"] = lines["Close"].ewm(span = b, min_periods = b).mean() return lines I am
By Patrick C · #47399 ·
Re: How to get historical daily data at a specific time?
If you're using Pandas, just filter the data. For example, in one of my programs, I want 5-minute bars, but only from 7am to 5pm. I d/l the data in the usual manner: app.reqHistoricalData(1,
By Jamie Hall · #47398 ·
Re: IB's clock is 17 seconds fast today
Try network time synchronization tool. NetTime for example.set it to synchronize every hour or so.
By thedude_c · #47397 ·
Re: Login GUI goes blank after install on Linux
I strongly suggest to isolate the trading environment through docker or (better) lxd/lxc-container. Have a look @ https://github.com/ib-ruby/ib-container/ ( https://github.com/ib/ruby/ib-container/
By Hartmut Bischoff · #47396 ·
Re: How to get historical daily data at a specific time?
I would also like to know if there is a way possible to pull historical bars from a specific start time? All within reason, like I want to pull the last 2 days of 1 min bars, but only want to start at
By Patrick C · #47395 ·
Re: Login GUI goes blank after install on Linux
You can uninstall java library and reinstall it again instead of redoing the whole VM reinstall. This way you can pinpoint the culprit to be the java library settings issue (conflict with IDE). If
By Bruce B · #47394 ·
Login GUI goes blank after install on Linux
Hey all, I've thoroughly searched the forum and the web to find a solution to this problem to no avail.? I've installed TWS and IBGW on a fresh openSUSE Hyper-v installation which goes off without a
By tjisana · #47393 ·
How to track orders via API, works in live not in paper trading
Hello, I have many orders and I watch the positions via the API, I use the OrderID field which works on Live but when I code and I am using TWS Paper trading login when I place orders the Order ID
By YSS <ys.soete@...> · #47392 ·
How to get historical daily data at a specific time?
Is there a way to request historical daily data (only need a snapshot at a specific time but could use daily close) at a specific time? I need the last 60 days of daily prices at 5pm EST. I read that
By Dojo321 · #47391 ·
Re: Connecting to ib-gateway in docker or WSL
You would require a GUI on Ubuntu container to run IB-Gateway and connect your client to it. Try installing VNC server on the container and then connect to it from your host (windows) machine. It
By Jay Parmar · #47390 ·
Re: multiple logins to same account
Haven't done it, but the following sounds promising https://ibkr.info/article/1004 They explicitly state your use case: "Individual account holders have the ability to add multiple users to their
By Sandro Krumbein · #47389 ·
need to know if stock have a shortable
I need a sample (python)?to know if stock have a shortable (On) thanks
By moshe.peled@... · #47388 ·
Re: IB's clock is 17 seconds fast today
I would note that 17 seconds is roughly 12 trips to the moon, at Warp 1. Not trying to imply anything by that, but y'know... with all the UFO stuff lately, it seems better to have our bases
By Tom McGinnis · #47387 ·
Connecting to ib-gateway in docker or WSL
Hello. I have a distro of ib-gateway from linux docker container, copied it into WSL2 Ubuntu environment, and trying to connect from Windows host. I tried different manuals how to forward ports from
By Mikhail Ershov · #47386 ·
Re: multiple logins to same account
You can access you account in the browser without disconnecting the trading session. Trading will not be available from the browser but other than that you will be able both to view your account and
By ds-avatar · #47385 ·
Re: multiple logins to same account
As far as I know there is no way. To overcome this, we have written a small standalone app which runs in the same container as the tws-gateway and implements a tcp server with it's own protocol that
By corneliu maftuleac <corneliu.maftuleac@...> · #47384 ·
Re: Marketdata Options Python
this means that your code has an EWrapper Interface implementation method 'realtimeBar' with incompatible arguments see
By Artyom T. · #47383 ·
multiple logins to same account
Hi. I run twsapi 7x24x365 on cloud. Occasionally I need to use the IBKR account on my iPhone to view read only. When I do, it disconnects the cloud logon which is not good because that is the
By Stuart Cracraft <smcracraft@...> · #47382 ·
Re: Marketdata Options Python
Unfortunately i dont get it to run¡­ Does anyone has a simple script te read out market data for options which works? Thanks. Von: [email protected] <[email protected]> Im Auftrag von Josh via
By Philipp Bechtel <philippbechtel@...> · #47381 ·
Re: Marketdata Options Python
Thanks, that was the solution! Unfortunately I have the next problem, now it says: Exception in thread Thread-15: Traceback (most recent call last): File
By Philipp Bechtel <philippbechtel@...> · #47380 ·