add etf to darkpool && market maker

This commit is contained in:
MuslemRahimi 2024-06-25 19:51:07 +02:00
parent 32c82ec0cb
commit 61b7617724
2 changed files with 3 additions and 3 deletions

View File

@ -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}")

View File

@ -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 = []