From 61b76177245864d3a977d065fb71ec8a54f70dfd Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Tue, 25 Jun 2024 19:51:07 +0200 Subject: [PATCH] add etf to darkpool && market maker --- app/cron_dark_pool.py | 4 ++-- app/cron_market_maker.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/cron_dark_pool.py b/app/cron_dark_pool.py index 887d772..6856456 100644 --- a/app/cron_dark_pool.py +++ b/app/cron_dark_pool.py @@ -91,7 +91,7 @@ async def run(): con.close() etf_con.close() - total_symbols = stocks_symbols #+ etf_symbols + total_symbols = stocks_symbols+ etf_symbols async with aiohttp.ClientSession() as session: tasks = [] @@ -109,4 +109,4 @@ if __name__ == "__main__": try: asyncio.run(run()) except Exception as e: - print(f"An error occurred: {e}") + print(f"An error occurred: {e}") \ No newline at end of file diff --git a/app/cron_market_maker.py b/app/cron_market_maker.py index 2ed4fe6..6b8b5d9 100644 --- a/app/cron_market_maker.py +++ b/app/cron_market_maker.py @@ -108,7 +108,7 @@ async def run(): con.close() etf_con.close() - total_symbols = stocks_symbols #+ etf_symbols + total_symbols = stocks_symbols + etf_symbols async with aiohttp.ClientSession() as session: tasks = []