def __init__(self,
                 mongo_db=None,
                 log=logtoscreen("arcticFuturesContractPriceData")):

        super().__init__(log=log)

        self._arctic_connection = arcticData(CONTRACT_COLLECTION, mongo_db=mongo_db)
    def __init__(self,
                 mongo_db=None,
                 log=logtoscreen("arcticFuturesAdjustedPrices")):

        super().__init__(log=log)

        self._arctic = arcticData(ADJPRICE_COLLECTION, mongo_db=mongo_db)
Esempio n. 3
0
    def __init__(
        self, mongo_db=None, log=logtoscreen("arcticFuturesMultiplePricesData")
    ):

        super().__init__(log=log)

        self._arctic = arcticData(MULTIPLE_COLLECTION, mongo_db=mongo_db)
Esempio n. 4
0
    def __init__(self, mongo_db=None, log=logtoscreen(
            "arcticSpreadsForInstrument")):

        super().__init__(log=log)

        self._arctic = arcticData(SPREAD_COLLECTION, mongo_db=mongo_db)
    def __init__(self, mongo_db=None, log=logtoscreen("arcticFxPricesData")):

        super().__init__(log=log)
        self._arctic = arcticData(SPOTFX_COLLECTION, mongo_db=mongo_db)