MCPcopy Create free account
hub / github.com/TraderAlice/OpenAlice / HistoricalTick

Class HistoricalTick

packages/ibkr/ref/source/pythonclient/ibapi/common.py:314–325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

312
313
314class HistoricalTick(Object):
315 def __init__(self):
316 self.time = 0
317 self.price = 0.0
318 self.size = UNSET_DECIMAL
319
320 def __str__(self):
321 return "Time: %s, Price: %s, Size: %s" % (
322 intMaxString(self.time),
323 floatMaxString(self.price),
324 decimalMaxString(self.size),
325 )
326
327
328class HistoricalTickBidAsk(Object):

Callers 2

decodeHistoricalTickFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected