Anybody else doing programming with the latest IB API version 9.72 in C++ on Linux (ie. POSIX) as console application?
I want to use it for equity options with these main tasks:
- get account data
- get current data of the underlying (ie. Level-1 data: Bid, BidSize, Ask, AskSize, Last, Volume)
- get the data to all strikes for a specified expiration date (ie. Level-1 data: Bid, BidSize, Ask, AskSize, Last, Volume)
- (analysis)
- submit order and monitor its status
- modify order
- cancel order
- keep a log of all important actions
- ...
I'm using the g++ compiler.
Does it make sense to work with streaming data or should I first start with just periodic snapshot data, for example every 15 or 30 seconds?
.
I want to use it for equity options with these main tasks:
- get account data
- get current data of the underlying (ie. Level-1 data: Bid, BidSize, Ask, AskSize, Last, Volume)
- get the data to all strikes for a specified expiration date (ie. Level-1 data: Bid, BidSize, Ask, AskSize, Last, Volume)
- (analysis)
- submit order and monitor its status
- modify order
- cancel order
- keep a log of all important actions
- ...
I'm using the g++ compiler.
Does it make sense to work with streaming data or should I first start with just periodic snapshot data, for example every 15 or 30 seconds?
.
Last edited:
, for this I indeed need to do such analysises. Btw, I'm non-professional trader, ie. just a retail at the moment.