def main(instance_id: str = 'prod', journal_path: str = '/behemoth/journals/', include_symbol: str = '*'): """ Command-line entry point used by Fire runner for CBP feedhandler. """ ws_fh_main(create_fh, CoinbaseProFeedHandler.get_uri_scheme(), instance_id, journal_path, 'COINBASE_PRO', include_symbol=include_symbol)
def main(instance_id: str = 'prod', include_symbol: str = '*', journal_path: str = '/behemoth/journals/'): """ Command-line entry point used by Fire runner for Phemex feedhandler. """ ws_fh_main(create_fh, PhemexFeedHandler.get_uri_scheme(), instance_id, journal_path, 'PHEMEX', include_symbol=include_symbol)
def main(instance_id: str = 'prod', journal_path: str = '/behemoth/journals/'): ws_fh_main(create_fh, PhemexFeedHandler.get_uri_scheme(), instance_id, journal_path, 'PHEMEX_TRADES')
def main(instance_id: str = 'prod', journal_path: str = '/behemoth/journals/'): ws_fh_main(create_fh, BinanceFeedHandler.get_uri_scheme(), instance_id, journal_path, 'BINANCE_TRADES')
def main(instance_id: str = 'prod', journal_path: str = '/behemoth/journals/'): ws_fh_main(create_fh, CoinbaseProFeedHandler.get_uri_scheme(), instance_id, journal_path, 'COINBASE_PRO_TRADES')
def main(instance_id: str = 'prod', journal_path: str = '/behemoth/journals/', include_symbol: str = '*'): ws_fh_main(create_fh, CoinbaseProFeedHandler.get_uri_scheme(), instance_id, journal_path, 'COINBASE_PRO', include_symbol=include_symbol)
def main(instance_id: str = 'prod', include_symbol: str = '*', journal_path: str = '/behemoth/journals/'): ws_fh_main(create_fh, PhemexFeedHandler.get_uri_scheme(), instance_id, journal_path, 'PHEMEX', True, include_symbol)