How to use the eventkit.Op.__init__ function in eventkit

To help you get started, we’ve selected a few eventkit examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github stenri / TradeLogIB / ib_insync / ticker.py View on Github external
def __init__(self, timer, source=None):
        Op.__init__(self, source)
        self._timer = timer
        self._timer.connect(self._on_timer, None, self._on_timer_done)
        self.bars: BarList = BarList()
github erdewit / ib_insync / ib_insync / ticker.py View on Github external
def __init__(self, count, source=None):
        Op.__init__(self, source)
        self._count = count
        self.bars: BarList = BarList()
github erdewit / ib_insync / ib_insync / ticker.py View on Github external
def __init__(self, tickTypes, source=None):
        Op.__init__(self, source)
        self._tickTypes = set(tickTypes)
github stenri / TradeLogIB / ib_insync / ticker.py View on Github external
def __init__(self, tickTypes, source=None):
        Op.__init__(self, source)
        self._tickTypes = set(tickTypes)
github erdewit / ib_insync / ib_insync / ticker.py View on Github external
def __init__(self, timer, source=None):
        Op.__init__(self, source)
        self._timer = timer
        self._timer.connect(self._on_timer, None, self._on_timer_done)
        self.bars: BarList = BarList()
github stenri / TradeLogIB / ib_insync / ticker.py View on Github external
def __init__(self, count, source=None):
        Op.__init__(self, source)
        self._count = count
        self.bars: BarList = BarList()