Looking for a Interactive Brokers API programmer

Ib has not a real streaming data feed but a burst feed 4x per second, you say you need T&S i guarantee you that this is different than other quality feeds. You get your feed for the orders from another quality feed and then you route your order via IB (Fix is what I use)

I run automated systems via IB but I'm not interested in a dev job. I'm way too expensive to move my lazy ass out of bed for this.

What is the quality feed u use? Is IQFeed sufficient for it?
 
Code:
connection.reqHistoricalData(
                tickerId = cid,
                contract=contract,
                endDateTime=endtime,
                durationStr='10 D',
                barSizeSetting='15 mins',
                whatToShow='MIDPOINT',
                useRTH=1,
                formatDate=1)
here's a python snippet
 
If you want 1 minute candlestick data, InteractiveBrokers is possible.

If you exceed their request limits, they will issue a pacing violation which lasts a maximum of 10 minutes. So if you leave the system running for a few days it is possible to download a lot of data in that time and is good as a 'free' source.

If you need higher resolution than 1m, then it starts to become difficult due to the pacing violations.
 
I have written an historical data downloader for myself in python for IB. It is designed with pacing violations in mind and uses IB API. (keystrokes are for 1980s)

It has an UI also. (I don’t like to read my own code:D:D:D).

upload_2020-5-25_16-9-21.png
 
Back
Top