ib_async icon indicating copy to clipboard operation
ib_async copied to clipboard

tickString with tickType 88: unhandled value

Open c0mm0d0re opened this issue 1 month ago • 2 comments

Matt, you're doing great with all of this stuff, thanks for the time and care you have put into this - consider having a discord (i know there are 'alternatives' but it should be started by you, i'd support it too)! Now the issue...

here is the code..

from ib_async import *
util.startLoop()

ib = IB()
ib.connect('127.0.0.1', 7496, clientId=int(time.time()))

>>> <IB connected to 127.0.0.1:7496 clientId=1761922338>

contract = Stock('AAPL', 'SMART', 'USD')
ib.qualifyContracts(contract)
ib.reqMarketDataType(3) # for live, use 1
mktData = ib.reqMktData(contract, snapshot=False, regulatorySnapshot=False, mktDataOptions=[]) # genericTickList='233,293,294,295,375', 

>>> tickString with tickType 88: unhandled value: '1761922139'
>>> tickString with tickType 88: unhandled value: '1761922148'
>>> tickString with tickType 88: unhandled value: '1761922159'
>>> tickString with tickType 88: unhandled value: '1761922169'

# it goes on and on like that.. 

for the next release, this may need a further look into... I am not sure why it's happening.

c0mm0d0re avatar Oct 31 '25 15:10 c0mm0d0re