Files
raptor-trading/invest-python-master/examples/async_order_state_stream.py

20 lines
485 B
Python

import asyncio
import os
from t_tech.invest import AsyncClient
from t_tech.invest.schemas import OrderStateStreamRequest
TOKEN = os.environ["INVEST_TOKEN"]
async def main():
async with AsyncClient(TOKEN) as client:
request = OrderStateStreamRequest()
stream = client.orders_stream.order_state_stream(request=request)
async for order_state in stream:
print(order_state)
if __name__ == "__main__":
asyncio.run(main())