Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
amamparo committed Jul 9, 2023
1 parent 548cd95 commit 1abecb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tastytrade_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
__all__ = [
'Tastytrade',
'MarketData', 'Subscription', 'Quote', 'Candle', 'Greeks',
'Api'
'Api',
'Order'
]

from tastytrade_sdk.api import Api, QueryParams
from tastytrade_sdk.market_data.market_data import MarketData
from tastytrade_sdk.market_data.models import Quote, Candle, Greeks
from tastytrade_sdk.market_data.subscription import Subscription
from tastytrade_sdk.orders import Order
from tastytrade_sdk.tastytrade import Tastytrade
1 change: 1 addition & 0 deletions src/tastytrade_sdk/orders.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def json(self) -> dict:

@dataclass
class Order:
"""@private"""
order_type: str
time_in_force: str
legs: List[Leg]
Expand Down

0 comments on commit 1abecb1

Please sign in to comment.