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

Class TagValue

packages/ibkr/ref/source/pythonclient/ibapi/tag_value.py:14–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13
14class TagValue(Object):
15 def __init__(self, tag: str = None, value: str = None):
16 self.tag = str(tag)
17 self.value = str(value)
18
19 def __str__(self):
20 # this is not only used for Python dump but when encoding to send
21 # so don't change it lightly !
22 return f"{self.tag}={self.value};"

Callers 15

ComboLimitOrderMethod · 0.90
ComboMarketOrderMethod · 0.90
RelativeLimitComboMethod · 0.90
RelativeMarketComboMethod · 0.90
FillDarkIceParamsMethod · 0.90
FillPctVolParamsMethod · 0.90
FillTwapParamsMethod · 0.90
FillVwapParamsMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected