Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ib_async/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
55: "tradeRate",
56: "volumeRate",
58: "rtHistVolatility",
90: "ShortableStatus",
}

GREEKS_TICK_MAP: Final[TickDict] = {
Expand Down Expand Up @@ -1113,7 +1114,7 @@ def tickString(self, reqId: int, tickType: int, value: str):
ticker.askExchange = value
elif tickType == 84:
ticker.lastExchange = value
elif tickType == 45:
elif tickType in {45, 88}:
timestamp = int(value)

# only populate if timestamp isn't '0' (we don't want to report "last trade: 20,000 days ago")
Expand Down