alexgolec / tda-api

A TD Ameritrade API client for Python. Includes historical data for equities and ETFs, options chains, streaming order book data, complex order construction, and more.
https://tda-api.readthedocs.io
MIT License
1.26k stars 338 forks source link

typo error in Status Enum: AWAITING_UR_OUR => AWAITING_UR_OUT #308

Closed kartiksubbarao closed 2 years ago

kartiksubbarao commented 2 years ago

Description of Bug There is a typo in the Status Enum in base.py: AWAITING_UR_OUR should be AWAITING_UR_OUT.

TD Ameritrade Order Statuses reference (see the JSON or Schema section): https://developer.tdameritrade.com/account-access/apis/get/accounts/%7BaccountId%7D/orders-0

Code to Reproduce https://github.com/alexgolec/tda-api/blob/master/tda/client/base.py#L147

Expected Behavior AWAITING_UR_OUT

Actual Behavior AWAITING_UR_OUR