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

Class WshEventData

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

Source from the content-addressed store, hash-verified

380
381
382class WshEventData(Object):
383 def __init__(self):
384 self.conId = UNSET_INTEGER
385 self.filter = ""
386 self.fillWatchlist = False
387 self.fillPortfolio = False
388 self.fillCompetitors = False
389 self.startDate = ""
390 self.endDate = ""
391 self.totalLimit = UNSET_INTEGER
392
393 def __str__(self):
394 return (
395 f"WshEventData. ConId: {intMaxString(self.conId)}, "
396 f"Filter: {self.filter}, "
397 f"Fill Watchlist: {self.fillWatchlist:d}, "
398 f"Fill Portfolio: {self.fillPortfolio:d}, "
399 f"Fill Competitors: {self.fillCompetitors:d}"
400 )

Callers 1

wshCalendarOperationsMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected