Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Add delayed bid- and ask yield
Browse files Browse the repository at this point in the history
  • Loading branch information
erdewit committed Sep 1, 2023
1 parent 1846f2a commit 2691ca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ib_insync/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,9 +718,9 @@ def priceSizeTick(
ticker.auctionPrice = price
elif tickType == 37:
ticker.markPrice = price
elif tickType == 50:
elif tickType in (50, 103):
ticker.bidYield = price
elif tickType == 51:
elif tickType in (51, 104):
ticker.askYield = price
elif tickType == 52:
ticker.lastYield = price
Expand Down

0 comments on commit 2691ca8

Please sign in to comment.