snaptrade-python-sdk 11.0.140__py3-none-any.whl → 11.0.142__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- snaptrade_client/__init__.py +1 -1
- snaptrade_client/api_client.py +1 -1
- snaptrade_client/configuration.py +1 -1
- snaptrade_client/model/manual_trade_form_with_options.py +16 -2
- snaptrade_client/model/manual_trade_form_with_options.pyi +16 -2
- snaptrade_client/model/trading_session.py +53 -0
- snaptrade_client/model/trading_session.pyi +46 -0
- snaptrade_client/models/__init__.py +1 -0
- snaptrade_client/operation_parameter_map.py +3 -0
- snaptrade_client/paths/accounts_account_id/get.py +2 -2
- snaptrade_client/paths/accounts_account_id/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_activities/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_activities/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_balances/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_balances/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_orders/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_orders/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_positions/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_positions/get.pyi +2 -2
- snaptrade_client/paths/trade_place/post.py +13 -0
- snaptrade_client/paths/trade_place/post.pyi +13 -0
- snaptrade_client/type/manual_trade_form_with_options.py +3 -0
- snaptrade_client/type/trading_session.py +19 -0
- {snaptrade_python_sdk-11.0.140.dist-info → snaptrade_python_sdk-11.0.142.dist-info}/METADATA +16 -3
- {snaptrade_python_sdk-11.0.140.dist-info → snaptrade_python_sdk-11.0.142.dist-info}/RECORD +27 -24
- {snaptrade_python_sdk-11.0.140.dist-info → snaptrade_python_sdk-11.0.142.dist-info}/LICENSE +0 -0
- {snaptrade_python_sdk-11.0.140.dist-info → snaptrade_python_sdk-11.0.142.dist-info}/WHEEL +0 -0
snaptrade_client/__init__.py
CHANGED
snaptrade_client/api_client.py
CHANGED
|
@@ -1155,7 +1155,7 @@ class ApiClient:
|
|
|
1155
1155
|
self.default_headers[header_name] = header_value
|
|
1156
1156
|
self.cookie = cookie
|
|
1157
1157
|
# Set default User-Agent.
|
|
1158
|
-
self.user_agent = 'Konfig/11.0.
|
|
1158
|
+
self.user_agent = 'Konfig/11.0.142/python'
|
|
1159
1159
|
|
|
1160
1160
|
def __enter__(self):
|
|
1161
1161
|
return self
|
|
@@ -438,7 +438,7 @@ conf = snaptrade_client.Configuration(
|
|
|
438
438
|
"OS: {env}\n"\
|
|
439
439
|
"Python Version: {pyversion}\n"\
|
|
440
440
|
"Version of the API: 1.0.0\n"\
|
|
441
|
-
"SDK Package Version: 11.0.
|
|
441
|
+
"SDK Package Version: 11.0.142".\
|
|
442
442
|
format(env=sys.platform, pyversion=sys.version)
|
|
443
443
|
|
|
444
444
|
def get_host_settings(self):
|
|
@@ -80,6 +80,10 @@ class ManualTradeFormWithOptions(
|
|
|
80
80
|
*args,
|
|
81
81
|
_configuration=_configuration,
|
|
82
82
|
)
|
|
83
|
+
|
|
84
|
+
@staticmethod
|
|
85
|
+
def trading_session() -> typing.Type['TradingSession']:
|
|
86
|
+
return TradingSession
|
|
83
87
|
|
|
84
88
|
|
|
85
89
|
class price(
|
|
@@ -168,6 +172,7 @@ class ManualTradeFormWithOptions(
|
|
|
168
172
|
"time_in_force": time_in_force,
|
|
169
173
|
"universal_symbol_id": universal_symbol_id,
|
|
170
174
|
"symbol": symbol,
|
|
175
|
+
"trading_session": trading_session,
|
|
171
176
|
"price": price,
|
|
172
177
|
"stop": stop,
|
|
173
178
|
"units": units,
|
|
@@ -197,6 +202,9 @@ class ManualTradeFormWithOptions(
|
|
|
197
202
|
@typing.overload
|
|
198
203
|
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
199
204
|
|
|
205
|
+
@typing.overload
|
|
206
|
+
def __getitem__(self, name: typing_extensions.Literal["trading_session"]) -> 'TradingSession': ...
|
|
207
|
+
|
|
200
208
|
@typing.overload
|
|
201
209
|
def __getitem__(self, name: typing_extensions.Literal["price"]) -> MetaOapg.properties.price: ...
|
|
202
210
|
|
|
@@ -212,7 +220,7 @@ class ManualTradeFormWithOptions(
|
|
|
212
220
|
@typing.overload
|
|
213
221
|
def __getitem__(self, name: str) -> schemas.UnsetAnyTypeSchema: ...
|
|
214
222
|
|
|
215
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "price", "stop", "units", "notional_value", ], str]):
|
|
223
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "trading_session", "price", "stop", "units", "notional_value", ], str]):
|
|
216
224
|
# dict_instance[name] accessor
|
|
217
225
|
return super().__getitem__(name)
|
|
218
226
|
|
|
@@ -235,6 +243,9 @@ class ManualTradeFormWithOptions(
|
|
|
235
243
|
@typing.overload
|
|
236
244
|
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
237
245
|
|
|
246
|
+
@typing.overload
|
|
247
|
+
def get_item_oapg(self, name: typing_extensions.Literal["trading_session"]) -> typing.Union['TradingSession', schemas.Unset]: ...
|
|
248
|
+
|
|
238
249
|
@typing.overload
|
|
239
250
|
def get_item_oapg(self, name: typing_extensions.Literal["price"]) -> typing.Union[MetaOapg.properties.price, schemas.Unset]: ...
|
|
240
251
|
|
|
@@ -250,7 +261,7 @@ class ManualTradeFormWithOptions(
|
|
|
250
261
|
@typing.overload
|
|
251
262
|
def get_item_oapg(self, name: str) -> typing.Union[schemas.UnsetAnyTypeSchema, schemas.Unset]: ...
|
|
252
263
|
|
|
253
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "price", "stop", "units", "notional_value", ], str]):
|
|
264
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "trading_session", "price", "stop", "units", "notional_value", ], str]):
|
|
254
265
|
return super().get_item_oapg(name)
|
|
255
266
|
|
|
256
267
|
|
|
@@ -263,6 +274,7 @@ class ManualTradeFormWithOptions(
|
|
|
263
274
|
order_type: 'OrderTypeStrict',
|
|
264
275
|
universal_symbol_id: typing.Union['UniversalSymbolIDNullable', schemas.Unset] = schemas.unset,
|
|
265
276
|
symbol: typing.Union[MetaOapg.properties.symbol, None, str, schemas.Unset] = schemas.unset,
|
|
277
|
+
trading_session: typing.Union['TradingSession', schemas.Unset] = schemas.unset,
|
|
266
278
|
price: typing.Union[MetaOapg.properties.price, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
267
279
|
stop: typing.Union[MetaOapg.properties.stop, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
268
280
|
units: typing.Union[MetaOapg.properties.units, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset,
|
|
@@ -279,6 +291,7 @@ class ManualTradeFormWithOptions(
|
|
|
279
291
|
order_type=order_type,
|
|
280
292
|
universal_symbol_id=universal_symbol_id,
|
|
281
293
|
symbol=symbol,
|
|
294
|
+
trading_session=trading_session,
|
|
282
295
|
price=price,
|
|
283
296
|
stop=stop,
|
|
284
297
|
units=units,
|
|
@@ -291,4 +304,5 @@ from snaptrade_client.model.action_strict_with_options import ActionStrictWithOp
|
|
|
291
304
|
from snaptrade_client.model.notional_value_nullable import NotionalValueNullable
|
|
292
305
|
from snaptrade_client.model.order_type_strict import OrderTypeStrict
|
|
293
306
|
from snaptrade_client.model.time_in_force_strict import TimeInForceStrict
|
|
307
|
+
from snaptrade_client.model.trading_session import TradingSession
|
|
294
308
|
from snaptrade_client.model.universal_symbol_id_nullable import UniversalSymbolIDNullable
|
|
@@ -80,6 +80,10 @@ class ManualTradeFormWithOptions(
|
|
|
80
80
|
*args,
|
|
81
81
|
_configuration=_configuration,
|
|
82
82
|
)
|
|
83
|
+
|
|
84
|
+
@staticmethod
|
|
85
|
+
def trading_session() -> typing.Type['TradingSession']:
|
|
86
|
+
return TradingSession
|
|
83
87
|
|
|
84
88
|
|
|
85
89
|
class price(
|
|
@@ -168,6 +172,7 @@ class ManualTradeFormWithOptions(
|
|
|
168
172
|
"time_in_force": time_in_force,
|
|
169
173
|
"universal_symbol_id": universal_symbol_id,
|
|
170
174
|
"symbol": symbol,
|
|
175
|
+
"trading_session": trading_session,
|
|
171
176
|
"price": price,
|
|
172
177
|
"stop": stop,
|
|
173
178
|
"units": units,
|
|
@@ -197,6 +202,9 @@ class ManualTradeFormWithOptions(
|
|
|
197
202
|
@typing.overload
|
|
198
203
|
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
199
204
|
|
|
205
|
+
@typing.overload
|
|
206
|
+
def __getitem__(self, name: typing_extensions.Literal["trading_session"]) -> 'TradingSession': ...
|
|
207
|
+
|
|
200
208
|
@typing.overload
|
|
201
209
|
def __getitem__(self, name: typing_extensions.Literal["price"]) -> MetaOapg.properties.price: ...
|
|
202
210
|
|
|
@@ -212,7 +220,7 @@ class ManualTradeFormWithOptions(
|
|
|
212
220
|
@typing.overload
|
|
213
221
|
def __getitem__(self, name: str) -> schemas.UnsetAnyTypeSchema: ...
|
|
214
222
|
|
|
215
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "price", "stop", "units", "notional_value", ], str]):
|
|
223
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "trading_session", "price", "stop", "units", "notional_value", ], str]):
|
|
216
224
|
# dict_instance[name] accessor
|
|
217
225
|
return super().__getitem__(name)
|
|
218
226
|
|
|
@@ -235,6 +243,9 @@ class ManualTradeFormWithOptions(
|
|
|
235
243
|
@typing.overload
|
|
236
244
|
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
237
245
|
|
|
246
|
+
@typing.overload
|
|
247
|
+
def get_item_oapg(self, name: typing_extensions.Literal["trading_session"]) -> typing.Union['TradingSession', schemas.Unset]: ...
|
|
248
|
+
|
|
238
249
|
@typing.overload
|
|
239
250
|
def get_item_oapg(self, name: typing_extensions.Literal["price"]) -> typing.Union[MetaOapg.properties.price, schemas.Unset]: ...
|
|
240
251
|
|
|
@@ -250,7 +261,7 @@ class ManualTradeFormWithOptions(
|
|
|
250
261
|
@typing.overload
|
|
251
262
|
def get_item_oapg(self, name: str) -> typing.Union[schemas.UnsetAnyTypeSchema, schemas.Unset]: ...
|
|
252
263
|
|
|
253
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "price", "stop", "units", "notional_value", ], str]):
|
|
264
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["account_id", "action", "order_type", "time_in_force", "universal_symbol_id", "symbol", "trading_session", "price", "stop", "units", "notional_value", ], str]):
|
|
254
265
|
return super().get_item_oapg(name)
|
|
255
266
|
|
|
256
267
|
|
|
@@ -263,6 +274,7 @@ class ManualTradeFormWithOptions(
|
|
|
263
274
|
order_type: 'OrderTypeStrict',
|
|
264
275
|
universal_symbol_id: typing.Union['UniversalSymbolIDNullable', schemas.Unset] = schemas.unset,
|
|
265
276
|
symbol: typing.Union[MetaOapg.properties.symbol, None, str, schemas.Unset] = schemas.unset,
|
|
277
|
+
trading_session: typing.Union['TradingSession', schemas.Unset] = schemas.unset,
|
|
266
278
|
price: typing.Union[MetaOapg.properties.price, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
267
279
|
stop: typing.Union[MetaOapg.properties.stop, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
268
280
|
units: typing.Union[MetaOapg.properties.units, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset,
|
|
@@ -279,6 +291,7 @@ class ManualTradeFormWithOptions(
|
|
|
279
291
|
order_type=order_type,
|
|
280
292
|
universal_symbol_id=universal_symbol_id,
|
|
281
293
|
symbol=symbol,
|
|
294
|
+
trading_session=trading_session,
|
|
282
295
|
price=price,
|
|
283
296
|
stop=stop,
|
|
284
297
|
units=units,
|
|
@@ -291,4 +304,5 @@ from snaptrade_client.model.action_strict_with_options import ActionStrictWithOp
|
|
|
291
304
|
from snaptrade_client.model.notional_value_nullable import NotionalValueNullable
|
|
292
305
|
from snaptrade_client.model.order_type_strict import OrderTypeStrict
|
|
293
306
|
from snaptrade_client.model.time_in_force_strict import TimeInForceStrict
|
|
307
|
+
from snaptrade_client.model.trading_session import TradingSession
|
|
294
308
|
from snaptrade_client.model.universal_symbol_id_nullable import UniversalSymbolIDNullable
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class TradingSession(
|
|
28
|
+
schemas.EnumBase,
|
|
29
|
+
schemas.StrSchema
|
|
30
|
+
):
|
|
31
|
+
"""
|
|
32
|
+
This class is auto generated by Konfig (https://konfigthis.com)
|
|
33
|
+
|
|
34
|
+
The trading session for the order. This field indicates which market session the order will be placed in. This is only available for certain brokerages. Defaults to REGULAR. Here are the supported values:
|
|
35
|
+
- `REGULAR` - Regular trading hours.
|
|
36
|
+
- `EXTENDED` - Extended trading hours.
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class MetaOapg:
|
|
42
|
+
enum_value_to_name = {
|
|
43
|
+
"REGULAR": "REGULAR",
|
|
44
|
+
"EXTENDED": "EXTENDED",
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@schemas.classproperty
|
|
48
|
+
def REGULAR(cls):
|
|
49
|
+
return cls("REGULAR")
|
|
50
|
+
|
|
51
|
+
@schemas.classproperty
|
|
52
|
+
def EXTENDED(cls):
|
|
53
|
+
return cls("EXTENDED")
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class TradingSession(
|
|
28
|
+
schemas.EnumBase,
|
|
29
|
+
schemas.StrSchema
|
|
30
|
+
):
|
|
31
|
+
"""
|
|
32
|
+
This class is auto generated by Konfig (https://konfigthis.com)
|
|
33
|
+
|
|
34
|
+
The trading session for the order. This field indicates which market session the order will be placed in. This is only available for certain brokerages. Defaults to REGULAR. Here are the supported values:
|
|
35
|
+
- `REGULAR` - Regular trading hours.
|
|
36
|
+
- `EXTENDED` - Extended trading hours.
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
@schemas.classproperty
|
|
41
|
+
def REGULAR(cls):
|
|
42
|
+
return cls("REGULAR")
|
|
43
|
+
|
|
44
|
+
@schemas.classproperty
|
|
45
|
+
def EXTENDED(cls):
|
|
46
|
+
return cls("EXTENDED")
|
|
@@ -167,6 +167,7 @@ from snaptrade_client.model.time_in_force import TimeInForce
|
|
|
167
167
|
from snaptrade_client.model.time_in_force_strict import TimeInForceStrict
|
|
168
168
|
from snaptrade_client.model.trade_id import TradeID
|
|
169
169
|
from snaptrade_client.model.trading_instrument import TradingInstrument
|
|
170
|
+
from snaptrade_client.model.trading_session import TradingSession
|
|
170
171
|
from snaptrade_client.model.transactions_status import TransactionsStatus
|
|
171
172
|
from snaptrade_client.model.us_exchange import USExchange
|
|
172
173
|
from snaptrade_client.model.underlying_symbol import UnderlyingSymbol
|
|
@@ -454,7 +454,7 @@ class GetUserAccountDetails(BaseApi):
|
|
|
454
454
|
ApiResponseForDefault,
|
|
455
455
|
api_client.ApiResponseWithoutDeserialization,
|
|
456
456
|
]:
|
|
457
|
-
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
457
|
+
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
458
458
|
args = self._get_user_account_details_mapped_args(
|
|
459
459
|
query_params=query_params,
|
|
460
460
|
path_params=path_params,
|
|
@@ -509,7 +509,7 @@ class ApiForget(BaseApi):
|
|
|
509
509
|
ApiResponseForDefault,
|
|
510
510
|
api_client.ApiResponseWithoutDeserialization,
|
|
511
511
|
]:
|
|
512
|
-
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
512
|
+
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
513
513
|
args = self._get_user_account_details_mapped_args(
|
|
514
514
|
query_params=query_params,
|
|
515
515
|
path_params=path_params,
|
|
@@ -443,7 +443,7 @@ class GetUserAccountDetails(BaseApi):
|
|
|
443
443
|
ApiResponseForDefault,
|
|
444
444
|
api_client.ApiResponseWithoutDeserialization,
|
|
445
445
|
]:
|
|
446
|
-
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
446
|
+
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
447
447
|
args = self._get_user_account_details_mapped_args(
|
|
448
448
|
query_params=query_params,
|
|
449
449
|
path_params=path_params,
|
|
@@ -498,7 +498,7 @@ class ApiForget(BaseApi):
|
|
|
498
498
|
ApiResponseForDefault,
|
|
499
499
|
api_client.ApiResponseWithoutDeserialization,
|
|
500
500
|
]:
|
|
501
|
-
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
501
|
+
""" Returns account detail known to SnapTrade for the specified account. The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
502
502
|
args = self._get_user_account_details_mapped_args(
|
|
503
503
|
query_params=query_params,
|
|
504
504
|
path_params=path_params,
|
|
@@ -552,7 +552,7 @@ class GetAccountActivities(BaseApi):
|
|
|
552
552
|
ApiResponseForDefault,
|
|
553
553
|
api_client.ApiResponseWithoutDeserialization,
|
|
554
554
|
]:
|
|
555
|
-
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. """
|
|
555
|
+
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
556
556
|
args = self._get_account_activities_mapped_args(
|
|
557
557
|
query_params=query_params,
|
|
558
558
|
path_params=path_params,
|
|
@@ -627,7 +627,7 @@ class ApiForget(BaseApi):
|
|
|
627
627
|
ApiResponseForDefault,
|
|
628
628
|
api_client.ApiResponseWithoutDeserialization,
|
|
629
629
|
]:
|
|
630
|
-
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. """
|
|
630
|
+
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
631
631
|
args = self._get_account_activities_mapped_args(
|
|
632
632
|
query_params=query_params,
|
|
633
633
|
path_params=path_params,
|
|
@@ -533,7 +533,7 @@ class GetAccountActivities(BaseApi):
|
|
|
533
533
|
ApiResponseForDefault,
|
|
534
534
|
api_client.ApiResponseWithoutDeserialization,
|
|
535
535
|
]:
|
|
536
|
-
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. """
|
|
536
|
+
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
537
537
|
args = self._get_account_activities_mapped_args(
|
|
538
538
|
query_params=query_params,
|
|
539
539
|
path_params=path_params,
|
|
@@ -608,7 +608,7 @@ class ApiForget(BaseApi):
|
|
|
608
608
|
ApiResponseForDefault,
|
|
609
609
|
api_client.ApiResponseWithoutDeserialization,
|
|
610
610
|
]:
|
|
611
|
-
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. """
|
|
611
|
+
""" Returns all historical transactions for the specified account. This endpoint is paginated with a default page size of 1000. The endpoint will return a maximum of 1000 transactions per request. See the query parameters for pagination options. Transaction are returned in reverse chronological order, using the `trade_date` field. The data returned here is always cached and refreshed once a day. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
612
612
|
args = self._get_account_activities_mapped_args(
|
|
613
613
|
query_params=query_params,
|
|
614
614
|
path_params=path_params,
|
|
@@ -479,7 +479,7 @@ class GetUserAccountBalance(BaseApi):
|
|
|
479
479
|
ApiResponseForDefault,
|
|
480
480
|
api_client.ApiResponseWithoutDeserialization,
|
|
481
481
|
]:
|
|
482
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
482
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
483
483
|
args = self._get_user_account_balance_mapped_args(
|
|
484
484
|
query_params=query_params,
|
|
485
485
|
path_params=path_params,
|
|
@@ -534,7 +534,7 @@ class ApiForget(BaseApi):
|
|
|
534
534
|
ApiResponseForDefault,
|
|
535
535
|
api_client.ApiResponseWithoutDeserialization,
|
|
536
536
|
]:
|
|
537
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
537
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
538
538
|
args = self._get_user_account_balance_mapped_args(
|
|
539
539
|
query_params=query_params,
|
|
540
540
|
path_params=path_params,
|
|
@@ -468,7 +468,7 @@ class GetUserAccountBalance(BaseApi):
|
|
|
468
468
|
ApiResponseForDefault,
|
|
469
469
|
api_client.ApiResponseWithoutDeserialization,
|
|
470
470
|
]:
|
|
471
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
471
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
472
472
|
args = self._get_user_account_balance_mapped_args(
|
|
473
473
|
query_params=query_params,
|
|
474
474
|
path_params=path_params,
|
|
@@ -523,7 +523,7 @@ class ApiForget(BaseApi):
|
|
|
523
523
|
ApiResponseForDefault,
|
|
524
524
|
api_client.ApiResponseWithoutDeserialization,
|
|
525
525
|
]:
|
|
526
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
526
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
527
527
|
args = self._get_user_account_balance_mapped_args(
|
|
528
528
|
query_params=query_params,
|
|
529
529
|
path_params=path_params,
|
|
@@ -539,7 +539,7 @@ class GetUserAccountOrders(BaseApi):
|
|
|
539
539
|
ApiResponseFor200,
|
|
540
540
|
api_client.ApiResponseWithoutDeserialization,
|
|
541
541
|
]:
|
|
542
|
-
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
542
|
+
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
543
543
|
args = self._get_user_account_orders_mapped_args(
|
|
544
544
|
query_params=query_params,
|
|
545
545
|
path_params=path_params,
|
|
@@ -600,7 +600,7 @@ class ApiForget(BaseApi):
|
|
|
600
600
|
ApiResponseFor200,
|
|
601
601
|
api_client.ApiResponseWithoutDeserialization,
|
|
602
602
|
]:
|
|
603
|
-
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
603
|
+
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
604
604
|
args = self._get_user_account_orders_mapped_args(
|
|
605
605
|
query_params=query_params,
|
|
606
606
|
path_params=path_params,
|
|
@@ -516,7 +516,7 @@ class GetUserAccountOrders(BaseApi):
|
|
|
516
516
|
ApiResponseFor200,
|
|
517
517
|
api_client.ApiResponseWithoutDeserialization,
|
|
518
518
|
]:
|
|
519
|
-
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
519
|
+
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
520
520
|
args = self._get_user_account_orders_mapped_args(
|
|
521
521
|
query_params=query_params,
|
|
522
522
|
path_params=path_params,
|
|
@@ -577,7 +577,7 @@ class ApiForget(BaseApi):
|
|
|
577
577
|
ApiResponseFor200,
|
|
578
578
|
api_client.ApiResponseWithoutDeserialization,
|
|
579
579
|
]:
|
|
580
|
-
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
580
|
+
""" Returns a list of recent orders in the specified account. The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
581
581
|
args = self._get_user_account_orders_mapped_args(
|
|
582
582
|
query_params=query_params,
|
|
583
583
|
path_params=path_params,
|
|
@@ -479,7 +479,7 @@ class GetUserAccountPositions(BaseApi):
|
|
|
479
479
|
ApiResponseForDefault,
|
|
480
480
|
api_client.ApiResponseWithoutDeserialization,
|
|
481
481
|
]:
|
|
482
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
482
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
483
483
|
args = self._get_user_account_positions_mapped_args(
|
|
484
484
|
query_params=query_params,
|
|
485
485
|
path_params=path_params,
|
|
@@ -534,7 +534,7 @@ class ApiForget(BaseApi):
|
|
|
534
534
|
ApiResponseForDefault,
|
|
535
535
|
api_client.ApiResponseWithoutDeserialization,
|
|
536
536
|
]:
|
|
537
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
537
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
538
538
|
args = self._get_user_account_positions_mapped_args(
|
|
539
539
|
query_params=query_params,
|
|
540
540
|
path_params=path_params,
|
|
@@ -468,7 +468,7 @@ class GetUserAccountPositions(BaseApi):
|
|
|
468
468
|
ApiResponseForDefault,
|
|
469
469
|
api_client.ApiResponseWithoutDeserialization,
|
|
470
470
|
]:
|
|
471
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
471
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
472
472
|
args = self._get_user_account_positions_mapped_args(
|
|
473
473
|
query_params=query_params,
|
|
474
474
|
path_params=path_params,
|
|
@@ -523,7 +523,7 @@ class ApiForget(BaseApi):
|
|
|
523
523
|
ApiResponseForDefault,
|
|
524
524
|
api_client.ApiResponseWithoutDeserialization,
|
|
525
525
|
]:
|
|
526
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. """
|
|
526
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
527
527
|
args = self._get_user_account_positions_mapped_args(
|
|
528
528
|
query_params=query_params,
|
|
529
529
|
path_params=path_params,
|
|
@@ -36,6 +36,7 @@ from snaptrade_client.model.model400_failed_request_response import Model400Fail
|
|
|
36
36
|
from snaptrade_client.model.notional_value_nullable import NotionalValueNullable as NotionalValueNullableSchema
|
|
37
37
|
from snaptrade_client.model.universal_symbol_id_nullable import UniversalSymbolIDNullable as UniversalSymbolIDNullableSchema
|
|
38
38
|
from snaptrade_client.model.account_order_record import AccountOrderRecord as AccountOrderRecordSchema
|
|
39
|
+
from snaptrade_client.model.trading_session import TradingSession as TradingSessionSchema
|
|
39
40
|
from snaptrade_client.model.model403_failed_request_response import Model403FailedRequestResponse as Model403FailedRequestResponseSchema
|
|
40
41
|
from snaptrade_client.model.action_strict_with_options import ActionStrictWithOptions as ActionStrictWithOptionsSchema
|
|
41
42
|
from snaptrade_client.model.time_in_force_strict import TimeInForceStrict as TimeInForceStrictSchema
|
|
@@ -49,6 +50,7 @@ from snaptrade_client.type.time_in_force_strict import TimeInForceStrict
|
|
|
49
50
|
from snaptrade_client.type.universal_symbol_id_nullable import UniversalSymbolIDNullable
|
|
50
51
|
from snaptrade_client.type.action_strict_with_options import ActionStrictWithOptions
|
|
51
52
|
from snaptrade_client.type.model403_failed_request_response import Model403FailedRequestResponse
|
|
53
|
+
from snaptrade_client.type.trading_session import TradingSession
|
|
52
54
|
from snaptrade_client.type.account_order_record import AccountOrderRecord
|
|
53
55
|
from snaptrade_client.type.order_type_strict import OrderTypeStrict
|
|
54
56
|
|
|
@@ -209,6 +211,7 @@ class BaseApi(api_client.Api):
|
|
|
209
211
|
user_secret: typing.Optional[str] = None,
|
|
210
212
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
211
213
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
214
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
212
215
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
213
216
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
214
217
|
units: typing.Optional[float] = None,
|
|
@@ -230,6 +233,8 @@ class BaseApi(api_client.Api):
|
|
|
230
233
|
_body["order_type"] = order_type
|
|
231
234
|
if time_in_force is not None:
|
|
232
235
|
_body["time_in_force"] = time_in_force
|
|
236
|
+
if trading_session is not None:
|
|
237
|
+
_body["trading_session"] = trading_session
|
|
233
238
|
if price is not None:
|
|
234
239
|
_body["price"] = price
|
|
235
240
|
if stop is not None:
|
|
@@ -493,6 +498,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
493
498
|
user_secret: typing.Optional[str] = None,
|
|
494
499
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
495
500
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
501
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
496
502
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
497
503
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
498
504
|
units: typing.Optional[float] = None,
|
|
@@ -515,6 +521,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
515
521
|
user_secret=user_secret,
|
|
516
522
|
universal_symbol_id=universal_symbol_id,
|
|
517
523
|
symbol=symbol,
|
|
524
|
+
trading_session=trading_session,
|
|
518
525
|
price=price,
|
|
519
526
|
stop=stop,
|
|
520
527
|
units=units,
|
|
@@ -537,6 +544,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
537
544
|
user_secret: typing.Optional[str] = None,
|
|
538
545
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
539
546
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
547
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
540
548
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
541
549
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
542
550
|
units: typing.Optional[float] = None,
|
|
@@ -558,6 +566,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
558
566
|
user_secret=user_secret,
|
|
559
567
|
universal_symbol_id=universal_symbol_id,
|
|
560
568
|
symbol=symbol,
|
|
569
|
+
trading_session=trading_session,
|
|
561
570
|
price=price,
|
|
562
571
|
stop=stop,
|
|
563
572
|
units=units,
|
|
@@ -582,6 +591,7 @@ class ApiForpost(BaseApi):
|
|
|
582
591
|
user_secret: typing.Optional[str] = None,
|
|
583
592
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
584
593
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
594
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
585
595
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
586
596
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
587
597
|
units: typing.Optional[float] = None,
|
|
@@ -604,6 +614,7 @@ class ApiForpost(BaseApi):
|
|
|
604
614
|
user_secret=user_secret,
|
|
605
615
|
universal_symbol_id=universal_symbol_id,
|
|
606
616
|
symbol=symbol,
|
|
617
|
+
trading_session=trading_session,
|
|
607
618
|
price=price,
|
|
608
619
|
stop=stop,
|
|
609
620
|
units=units,
|
|
@@ -626,6 +637,7 @@ class ApiForpost(BaseApi):
|
|
|
626
637
|
user_secret: typing.Optional[str] = None,
|
|
627
638
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
628
639
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
640
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
629
641
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
630
642
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
631
643
|
units: typing.Optional[float] = None,
|
|
@@ -647,6 +659,7 @@ class ApiForpost(BaseApi):
|
|
|
647
659
|
user_secret=user_secret,
|
|
648
660
|
universal_symbol_id=universal_symbol_id,
|
|
649
661
|
symbol=symbol,
|
|
662
|
+
trading_session=trading_session,
|
|
650
663
|
price=price,
|
|
651
664
|
stop=stop,
|
|
652
665
|
units=units,
|
|
@@ -36,6 +36,7 @@ from snaptrade_client.model.model400_failed_request_response import Model400Fail
|
|
|
36
36
|
from snaptrade_client.model.notional_value_nullable import NotionalValueNullable as NotionalValueNullableSchema
|
|
37
37
|
from snaptrade_client.model.universal_symbol_id_nullable import UniversalSymbolIDNullable as UniversalSymbolIDNullableSchema
|
|
38
38
|
from snaptrade_client.model.account_order_record import AccountOrderRecord as AccountOrderRecordSchema
|
|
39
|
+
from snaptrade_client.model.trading_session import TradingSession as TradingSessionSchema
|
|
39
40
|
from snaptrade_client.model.model403_failed_request_response import Model403FailedRequestResponse as Model403FailedRequestResponseSchema
|
|
40
41
|
from snaptrade_client.model.action_strict_with_options import ActionStrictWithOptions as ActionStrictWithOptionsSchema
|
|
41
42
|
from snaptrade_client.model.time_in_force_strict import TimeInForceStrict as TimeInForceStrictSchema
|
|
@@ -49,6 +50,7 @@ from snaptrade_client.type.time_in_force_strict import TimeInForceStrict
|
|
|
49
50
|
from snaptrade_client.type.universal_symbol_id_nullable import UniversalSymbolIDNullable
|
|
50
51
|
from snaptrade_client.type.action_strict_with_options import ActionStrictWithOptions
|
|
51
52
|
from snaptrade_client.type.model403_failed_request_response import Model403FailedRequestResponse
|
|
53
|
+
from snaptrade_client.type.trading_session import TradingSession
|
|
52
54
|
from snaptrade_client.type.account_order_record import AccountOrderRecord
|
|
53
55
|
from snaptrade_client.type.order_type_strict import OrderTypeStrict
|
|
54
56
|
|
|
@@ -196,6 +198,7 @@ class BaseApi(api_client.Api):
|
|
|
196
198
|
user_secret: typing.Optional[str] = None,
|
|
197
199
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
198
200
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
201
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
199
202
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
200
203
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
201
204
|
units: typing.Optional[float] = None,
|
|
@@ -217,6 +220,8 @@ class BaseApi(api_client.Api):
|
|
|
217
220
|
_body["order_type"] = order_type
|
|
218
221
|
if time_in_force is not None:
|
|
219
222
|
_body["time_in_force"] = time_in_force
|
|
223
|
+
if trading_session is not None:
|
|
224
|
+
_body["trading_session"] = trading_session
|
|
220
225
|
if price is not None:
|
|
221
226
|
_body["price"] = price
|
|
222
227
|
if stop is not None:
|
|
@@ -480,6 +485,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
480
485
|
user_secret: typing.Optional[str] = None,
|
|
481
486
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
482
487
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
488
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
483
489
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
484
490
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
485
491
|
units: typing.Optional[float] = None,
|
|
@@ -502,6 +508,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
502
508
|
user_secret=user_secret,
|
|
503
509
|
universal_symbol_id=universal_symbol_id,
|
|
504
510
|
symbol=symbol,
|
|
511
|
+
trading_session=trading_session,
|
|
505
512
|
price=price,
|
|
506
513
|
stop=stop,
|
|
507
514
|
units=units,
|
|
@@ -524,6 +531,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
524
531
|
user_secret: typing.Optional[str] = None,
|
|
525
532
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
526
533
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
534
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
527
535
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
528
536
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
529
537
|
units: typing.Optional[float] = None,
|
|
@@ -545,6 +553,7 @@ class PlaceForceOrder(BaseApi):
|
|
|
545
553
|
user_secret=user_secret,
|
|
546
554
|
universal_symbol_id=universal_symbol_id,
|
|
547
555
|
symbol=symbol,
|
|
556
|
+
trading_session=trading_session,
|
|
548
557
|
price=price,
|
|
549
558
|
stop=stop,
|
|
550
559
|
units=units,
|
|
@@ -569,6 +578,7 @@ class ApiForpost(BaseApi):
|
|
|
569
578
|
user_secret: typing.Optional[str] = None,
|
|
570
579
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
571
580
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
581
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
572
582
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
573
583
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
574
584
|
units: typing.Optional[float] = None,
|
|
@@ -591,6 +601,7 @@ class ApiForpost(BaseApi):
|
|
|
591
601
|
user_secret=user_secret,
|
|
592
602
|
universal_symbol_id=universal_symbol_id,
|
|
593
603
|
symbol=symbol,
|
|
604
|
+
trading_session=trading_session,
|
|
594
605
|
price=price,
|
|
595
606
|
stop=stop,
|
|
596
607
|
units=units,
|
|
@@ -613,6 +624,7 @@ class ApiForpost(BaseApi):
|
|
|
613
624
|
user_secret: typing.Optional[str] = None,
|
|
614
625
|
universal_symbol_id: typing.Optional[UniversalSymbolIDNullable] = None,
|
|
615
626
|
symbol: typing.Optional[typing.Optional[str]] = None,
|
|
627
|
+
trading_session: typing.Optional[TradingSession] = None,
|
|
616
628
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
617
629
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
618
630
|
units: typing.Optional[float] = None,
|
|
@@ -634,6 +646,7 @@ class ApiForpost(BaseApi):
|
|
|
634
646
|
user_secret=user_secret,
|
|
635
647
|
universal_symbol_id=universal_symbol_id,
|
|
636
648
|
symbol=symbol,
|
|
649
|
+
trading_session=trading_session,
|
|
637
650
|
price=price,
|
|
638
651
|
stop=stop,
|
|
639
652
|
units=units,
|
|
@@ -19,6 +19,7 @@ from snaptrade_client.type.action_strict_with_options import ActionStrictWithOpt
|
|
|
19
19
|
from snaptrade_client.type.notional_value_nullable import NotionalValueNullable
|
|
20
20
|
from snaptrade_client.type.order_type_strict import OrderTypeStrict
|
|
21
21
|
from snaptrade_client.type.time_in_force_strict import TimeInForceStrict
|
|
22
|
+
from snaptrade_client.type.trading_session import TradingSession
|
|
22
23
|
from snaptrade_client.type.universal_symbol_id_nullable import UniversalSymbolIDNullable
|
|
23
24
|
|
|
24
25
|
class RequiredManualTradeFormWithOptions(TypedDict):
|
|
@@ -39,6 +40,8 @@ class OptionalManualTradeFormWithOptions(TypedDict, total=False):
|
|
|
39
40
|
# The security's trading ticker symbol. If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
|
|
40
41
|
symbol: typing.Optional[str]
|
|
41
42
|
|
|
43
|
+
trading_session: TradingSession
|
|
44
|
+
|
|
42
45
|
# The limit price for `Limit` and `StopLimit` orders.
|
|
43
46
|
price: typing.Optional[typing.Union[int, float]]
|
|
44
47
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import datetime, date
|
|
14
|
+
import typing
|
|
15
|
+
from enum import Enum
|
|
16
|
+
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
TradingSession = Literal["REGULAR", "EXTENDED"]
|
{snaptrade_python_sdk-11.0.140.dist-info → snaptrade_python_sdk-11.0.142.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: snaptrade-python-sdk
|
|
3
|
-
Version: 11.0.
|
|
3
|
+
Version: 11.0.142
|
|
4
4
|
Summary: Client for SnapTrade
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: SnapTrade
|
|
@@ -30,7 +30,7 @@ Description-Content-Type: text/markdown
|
|
|
30
30
|
Connect brokerage accounts to your app for live positions and trading
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
[](https://pypi.org/project/snaptrade-python-sdk/11.0.142)
|
|
34
34
|
[](https://github.com/passiv/snaptrade-sdks/tree/master/sdks/python#readme)
|
|
35
35
|
[](https://snaptrade.com/)
|
|
36
36
|
|
|
@@ -109,7 +109,7 @@ Python >=3.8
|
|
|
109
109
|
## Installation<a id="installation"></a>
|
|
110
110
|
|
|
111
111
|
```sh
|
|
112
|
-
pip install snaptrade-python-sdk==11.0.
|
|
112
|
+
pip install snaptrade-python-sdk==11.0.142
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
## Getting Started<a id="getting-started"></a>
|
|
@@ -224,6 +224,8 @@ Transaction are returned in reverse chronological order, using the `trade_date`
|
|
|
224
224
|
|
|
225
225
|
The data returned here is always cached and refreshed once a day.
|
|
226
226
|
|
|
227
|
+
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
228
|
+
|
|
227
229
|
|
|
228
230
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
229
231
|
|
|
@@ -327,6 +329,8 @@ Returns a list of balances for the account. Each element of the list has a disti
|
|
|
327
329
|
|
|
328
330
|
The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**.
|
|
329
331
|
|
|
332
|
+
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
333
|
+
|
|
330
334
|
|
|
331
335
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
332
336
|
|
|
@@ -366,6 +370,8 @@ Returns account detail known to SnapTrade for the specified account.
|
|
|
366
370
|
|
|
367
371
|
The data returned here is always cached and refreshed once a day. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**.
|
|
368
372
|
|
|
373
|
+
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
374
|
+
|
|
369
375
|
|
|
370
376
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
371
377
|
|
|
@@ -456,6 +462,8 @@ Returns a list of recent orders in the specified account.
|
|
|
456
462
|
|
|
457
463
|
The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**.
|
|
458
464
|
|
|
465
|
+
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
466
|
+
|
|
459
467
|
|
|
460
468
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
461
469
|
|
|
@@ -505,6 +513,8 @@ Returns a list of stock/ETF/crypto/mutual fund positions in the specified accoun
|
|
|
505
513
|
|
|
506
514
|
The data returned here is cached. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. **If you need real-time data, please use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint**.
|
|
507
515
|
|
|
516
|
+
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
517
|
+
|
|
508
518
|
|
|
509
519
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
510
520
|
|
|
@@ -2057,6 +2067,7 @@ place_force_order_response = snaptrade.trading.place_force_order(
|
|
|
2057
2067
|
user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
|
|
2058
2068
|
universal_symbol_id="2bcd7cc3-e922-4976-bce1-9858296801c3",
|
|
2059
2069
|
symbol="AAPL",
|
|
2070
|
+
trading_session="REGULAR",
|
|
2060
2071
|
price=31.33,
|
|
2061
2072
|
stop=31.33,
|
|
2062
2073
|
units=10.5,
|
|
@@ -2088,6 +2099,8 @@ The universal symbol ID of the security to trade. Must be 'null' if `symbol` is
|
|
|
2088
2099
|
|
|
2089
2100
|
The security's trading ticker symbol. If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
|
|
2090
2101
|
|
|
2102
|
+
##### trading_session: [`TradingSession`](./snaptrade_client/type/trading_session.py)<a id="trading_session-tradingsessionsnaptrade_clienttypetrading_sessionpy"></a>
|
|
2103
|
+
|
|
2091
2104
|
##### price: `Optional[Union[int, float]]`<a id="price-optionalunionint-float"></a>
|
|
2092
2105
|
|
|
2093
2106
|
The limit price for `Limit` and `StopLimit` orders.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
snaptrade_client/__init__.py,sha256=
|
|
2
|
-
snaptrade_client/api_client.py,sha256=
|
|
1
|
+
snaptrade_client/__init__.py,sha256=tD7SZ-K-I9itrRJhWFxq7sDKubyAzq49VuPj0VS57Ug,820
|
|
2
|
+
snaptrade_client/api_client.py,sha256=JlvhQQZQnWVsrjpOOFPHAyh_3tkxsS4MnMU6si7xH9s,73975
|
|
3
3
|
snaptrade_client/api_response.py,sha256=mZn18p_TNr6OY0HXTZW5InL9iXfqsJWstYGeGD-euPA,663
|
|
4
4
|
snaptrade_client/apis/__init__.py,sha256=RTosXhMn41tMsKPUjIy-VK-_efOWzhkKiuGggJ3A6E0,214
|
|
5
5
|
snaptrade_client/apis/path_to_api.py,sha256=4kldxcVXHcyd6XM8UFe7zlFSHj02tf9s3TFXDZwfEHY,12312
|
|
@@ -77,7 +77,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
|
|
|
77
77
|
snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
|
|
78
78
|
snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
|
|
79
79
|
snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
|
|
80
|
-
snaptrade_client/configuration.py,sha256=
|
|
80
|
+
snaptrade_client/configuration.py,sha256=RQR9pMlQ_-tXZYWuDI7-vMm7ZA0p6NZqVNhzqCXKey4,19262
|
|
81
81
|
snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
|
|
82
82
|
snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
|
|
83
83
|
snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
|
|
@@ -221,8 +221,8 @@ snaptrade_client/model/manual_trade_form.py,sha256=lExfLWPAIsEHtMRFrd5PWipggsAHZ
|
|
|
221
221
|
snaptrade_client/model/manual_trade_form.pyi,sha256=lExfLWPAIsEHtMRFrd5PWipggsAHZJM7ICxirYTRDQo,8863
|
|
222
222
|
snaptrade_client/model/manual_trade_form_bracket.py,sha256=uJKVqZFaQLuDx7YUO9W4e63vQIG5jMqFXSHSfnBMi1o,8709
|
|
223
223
|
snaptrade_client/model/manual_trade_form_bracket.pyi,sha256=uJKVqZFaQLuDx7YUO9W4e63vQIG5jMqFXSHSfnBMi1o,8709
|
|
224
|
-
snaptrade_client/model/manual_trade_form_with_options.py,sha256=
|
|
225
|
-
snaptrade_client/model/manual_trade_form_with_options.pyi,sha256=
|
|
224
|
+
snaptrade_client/model/manual_trade_form_with_options.py,sha256=VE-7lHPU7UrpyjySlQ2vtj0rBWbvYg1_fBCIJD2APo8,12679
|
|
225
|
+
snaptrade_client/model/manual_trade_form_with_options.pyi,sha256=VE-7lHPU7UrpyjySlQ2vtj0rBWbvYg1_fBCIJD2APo8,12679
|
|
226
226
|
snaptrade_client/model/manual_trade_impact.py,sha256=zgr_9AHr8spkoYHncJB_V0axP-eNLfHXWQ_arZOfbQw,7078
|
|
227
227
|
snaptrade_client/model/manual_trade_impact.pyi,sha256=zgr_9AHr8spkoYHncJB_V0axP-eNLfHXWQ_arZOfbQw,7078
|
|
228
228
|
snaptrade_client/model/manual_trade_replace_form.py,sha256=g-jikLdUd96NquVYpbezmBr5KDRGvxnWDRlpL4tUxiE,8013
|
|
@@ -393,6 +393,8 @@ snaptrade_client/model/trade_id.py,sha256=cbEaNeZ_8WW53ZCJFJVNM0CAh6veUNkwGqzUQB
|
|
|
393
393
|
snaptrade_client/model/trade_id.pyi,sha256=cbEaNeZ_8WW53ZCJFJVNM0CAh6veUNkwGqzUQBFoG8E,598
|
|
394
394
|
snaptrade_client/model/trading_instrument.py,sha256=wEjNKB3IKUIECCLXABt5x2tp0GNOlijcAnAs5Ym_lTg,4021
|
|
395
395
|
snaptrade_client/model/trading_instrument.pyi,sha256=i0tAB4jo6TWozRUUksjuAtHIHqza1V2jSW9UxlMYmfY,3680
|
|
396
|
+
snaptrade_client/model/trading_session.py,sha256=iafzUFLRQ9rpO2FA9ft8Sqx4rkhp-oUrOon701MVGlQ,1318
|
|
397
|
+
snaptrade_client/model/trading_session.pyi,sha256=o34a1Dri4i384kMtxmOroaMU-gUpQD3cAyfd82O0Kf8,1185
|
|
396
398
|
snaptrade_client/model/transactions_status.py,sha256=tyGuPY9gq2rHu26Twg3PSvyBEOEW4BEV0UDreQj0OlM,6840
|
|
397
399
|
snaptrade_client/model/transactions_status.pyi,sha256=tyGuPY9gq2rHu26Twg3PSvyBEOEW4BEV0UDreQj0OlM,6840
|
|
398
400
|
snaptrade_client/model/underlying_symbol.py,sha256=z-wwtN1bCGTk4_qIOnZM0WZAZhQqNfEdUC6-Sx_P-co,15766
|
|
@@ -421,23 +423,23 @@ snaptrade_client/model/user_secret.py,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9
|
|
|
421
423
|
snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9cmz9vBMc,600
|
|
422
424
|
snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
423
425
|
snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
424
|
-
snaptrade_client/models/__init__.py,sha256=
|
|
425
|
-
snaptrade_client/operation_parameter_map.py,sha256=
|
|
426
|
+
snaptrade_client/models/__init__.py,sha256=ckAiBjzyY3TI5A3xEBBVr4yy18bkwPiNgMQrdqG2vo8,13378
|
|
427
|
+
snaptrade_client/operation_parameter_map.py,sha256=efEFBOivV1dnQ4iuMRp3uKU6ngh-boYx38MoUO7dL7Q,18319
|
|
426
428
|
snaptrade_client/paths/__init__.py,sha256=_AIs8vbi_zgRHbgZ2k64V6waRP3RiZuyL4nRaZbpLMY,3519
|
|
427
429
|
snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
|
|
428
430
|
snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
|
|
429
431
|
snaptrade_client/paths/accounts/get.pyi,sha256=gna7qIU-95WqOFl6qTsP18ZY7SKi9CYEBAbARPAPPF4,16261
|
|
430
432
|
snaptrade_client/paths/accounts_account_id/__init__.py,sha256=9aC0eIU_zO4LjW3yibk0-Kz1EM4BdeDGrZKVqb6JT6c,329
|
|
431
|
-
snaptrade_client/paths/accounts_account_id/get.py,sha256=
|
|
432
|
-
snaptrade_client/paths/accounts_account_id/get.pyi,sha256=
|
|
433
|
+
snaptrade_client/paths/accounts_account_id/get.py,sha256=oytahqyXXYj_vu2dnthT8MjYH9DIVleErq1WivG7dYI,19298
|
|
434
|
+
snaptrade_client/paths/accounts_account_id/get.pyi,sha256=U6Yq6cO_2HlLYCq-Q3bVc4wp1FqBhcDxNmHIjZaCd6c,19096
|
|
433
435
|
snaptrade_client/paths/accounts_account_id/put.py,sha256=yUtU_Ztlb4LcRBE9RbkthicOIW9YKg9gkp9LXFjPTIw,18935
|
|
434
436
|
snaptrade_client/paths/accounts_account_id/put.pyi,sha256=x_GjR3jkoxPvy-NzjnD-f5Hb8EZL3NJxVwMHVSmWpGA,18733
|
|
435
437
|
snaptrade_client/paths/accounts_account_id_activities/__init__.py,sha256=qlDvsgw0WG71ArqzcRK7BinKmGDD87MuNTgRF3qsiak,351
|
|
436
|
-
snaptrade_client/paths/accounts_account_id_activities/get.py,sha256=
|
|
437
|
-
snaptrade_client/paths/accounts_account_id_activities/get.pyi,sha256=
|
|
438
|
+
snaptrade_client/paths/accounts_account_id_activities/get.py,sha256=swwM-uLT8uFfypqhz5-84SvfSkYcET0CkRSiMBPpsPY,23602
|
|
439
|
+
snaptrade_client/paths/accounts_account_id_activities/get.pyi,sha256=V0KadGSbTa8Cszc7Tqr4GbcVowbew3cZ1YR45paRRYo,23264
|
|
438
440
|
snaptrade_client/paths/accounts_account_id_balances/__init__.py,sha256=LMzd1SUmXEbRDIfESN0Aap2D2FQT9N_QI-MrJsHFA6M,347
|
|
439
|
-
snaptrade_client/paths/accounts_account_id_balances/get.py,sha256=
|
|
440
|
-
snaptrade_client/paths/accounts_account_id_balances/get.pyi,sha256=
|
|
441
|
+
snaptrade_client/paths/accounts_account_id_balances/get.py,sha256=Kbe7TYXPh1EO6bSbHswIbKArH38dGnC2oihrpaqtdgM,20876
|
|
442
|
+
snaptrade_client/paths/accounts_account_id_balances/get.pyi,sha256=xWAduPaWoq5uwcrQ32lFHx09AOC2vK8wu2ZFQpmmg_0,20674
|
|
441
443
|
snaptrade_client/paths/accounts_account_id_holdings/__init__.py,sha256=EkzRO4nxKZWuVWU5PkA0nQsIcAupunq2k_d_Vnc3X0M,347
|
|
442
444
|
snaptrade_client/paths/accounts_account_id_holdings/get.py,sha256=yUfzDrEEdxc6gn5TRdLmEh3RIqa35unNEGCjmzUhBcc,22782
|
|
443
445
|
snaptrade_client/paths/accounts_account_id_holdings/get.pyi,sha256=-9Fg0sItWlJW3SzAIGWdMBWPmj465zfHjNLiFy3Nf3k,22498
|
|
@@ -448,8 +450,8 @@ snaptrade_client/paths/accounts_account_id_options_chain/__init__.py,sha256=ork4
|
|
|
448
450
|
snaptrade_client/paths/accounts_account_id_options_chain/get.py,sha256=9wE6K2qLBKMxJBGuXCkVKVHOeAGquEzGQYrw_Yv44DU,19093
|
|
449
451
|
snaptrade_client/paths/accounts_account_id_options_chain/get.pyi,sha256=7qu-rIKEaRegnMZLruZMmC3ON-bCy-dX3R2Umsep0nU,18899
|
|
450
452
|
snaptrade_client/paths/accounts_account_id_orders/__init__.py,sha256=zHuTi8F_iUeJNBtI08jQZe2-gAFrIDAYEl1B5y0XpTM,343
|
|
451
|
-
snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=
|
|
452
|
-
snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=
|
|
453
|
+
snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=vYuwEYQkxQLLjqoivzoOYe13Td9e7eyQv2rngMdaEoM,22381
|
|
454
|
+
snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=dNyycTdqHkastivjagTLBgvyjbmzBqd6_V88MfKAxpU,21966
|
|
453
455
|
snaptrade_client/paths/accounts_account_id_orders_cancel/__init__.py,sha256=UIeHlsXhxZyqf4ADkLxYxJUH6ChCcSkpeML1XWjxGdI,357
|
|
454
456
|
snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=sPmESQzGN6Y_ah1zE9JqB5f8SucQUeQnJYSsIOhCgCg,24634
|
|
455
457
|
snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=7rGmssodCjE7gL93TszNkejW8aPyQuoMehuPecNUpbE,24410
|
|
@@ -457,8 +459,8 @@ snaptrade_client/paths/accounts_account_id_orders_details/__init__.py,sha256=6PW
|
|
|
457
459
|
snaptrade_client/paths/accounts_account_id_orders_details/post.py,sha256=sKlgBkbf_3AYG1i-Te5DNON5B74Lp_I7tMNYzT0gwiI,25690
|
|
458
460
|
snaptrade_client/paths/accounts_account_id_orders_details/post.pyi,sha256=UDhFYZKTQJ47rIh37A2cbiVVwmNjJbDZaOJ9Y5pwEx4,25436
|
|
459
461
|
snaptrade_client/paths/accounts_account_id_positions/__init__.py,sha256=UB-B0t2OnlP8QvI9ptBNhqYsywmYsFZz9G8NJkVZBTM,349
|
|
460
|
-
snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=
|
|
461
|
-
snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=
|
|
462
|
+
snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=9eTq-zfndu4c7fTjE3EEkSvRrF2VZDufeo7YVnC3kXQ,20708
|
|
463
|
+
snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=HsxNb3oIo8GTp-S1dud9dwNZk3hfWZMPls02kNBLw7c,20506
|
|
462
464
|
snaptrade_client/paths/accounts_account_id_quotes/__init__.py,sha256=_EWd0irMSNiZtx_chO_X9TCy_WWzFQoySf3yLEkAh2I,343
|
|
463
465
|
snaptrade_client/paths/accounts_account_id_quotes/get.py,sha256=JADR5PB0JVGiRBwWaKhRj4w4BlRMu96p6WPEvVVivE0,20735
|
|
464
466
|
snaptrade_client/paths/accounts_account_id_quotes/get.pyi,sha256=xsIXCJCcHZ8aCS-ammQ75NSiPP1HJdyf4IExstlmysk,20541
|
|
@@ -579,8 +581,8 @@ snaptrade_client/paths/trade_impact/__init__.py,sha256=Ahc5LzJcfLoux_9jiEMVkF5c-
|
|
|
579
581
|
snaptrade_client/paths/trade_impact/post.py,sha256=gycxVhNtjzsgEHaPfTruKOSufJuH5jAbwYP4YsTNaW0,25430
|
|
580
582
|
snaptrade_client/paths/trade_impact/post.pyi,sha256=-um0creYorDD-UH85zUbPnONXy9ZphqZEmIakUpdJCs,25176
|
|
581
583
|
snaptrade_client/paths/trade_place/__init__.py,sha256=83mA3Q0syyXA7ghAZOOJMQumSWVhvpkP3etJxeLmZZY,313
|
|
582
|
-
snaptrade_client/paths/trade_place/post.py,sha256=
|
|
583
|
-
snaptrade_client/paths/trade_place/post.pyi,sha256=
|
|
584
|
+
snaptrade_client/paths/trade_place/post.py,sha256=uV7Si3MJZwIjX-YpoNKAed-gwJ_E1HT-szcSSQYeESc,27527
|
|
585
|
+
snaptrade_client/paths/trade_place/post.pyi,sha256=mwy1CrYgilazUsPlQ2twhPe5qlfszv-4-vXxVRboDuw,27273
|
|
584
586
|
snaptrade_client/paths/trade_trade_id/__init__.py,sha256=EDXCsrx0SP8La12CshBpoPw_Ve9bBIF-EXx3FLBIDcc,319
|
|
585
587
|
snaptrade_client/paths/trade_trade_id/post.py,sha256=MU1ydQfvpuxrMmjluX887yjofWC32cm6bi6tHbCwF0k,22385
|
|
586
588
|
snaptrade_client/paths/trade_trade_id/post.pyi,sha256=bO40OO_iPO8XykRqox6CmvlNt01Cqh0ehHviaG50ZxY,22161
|
|
@@ -661,7 +663,7 @@ snaptrade_client/type/manual_trade_and_impact.py,sha256=Itewupnzd0ui_8do2Bll-l7F
|
|
|
661
663
|
snaptrade_client/type/manual_trade_balance.py,sha256=K_eBMvo05GpZCvnWKQzUY2NFqyPEAH8GrdDreURl6s0,942
|
|
662
664
|
snaptrade_client/type/manual_trade_form.py,sha256=VENobS352pltGcepu3Cg9uvMZcPZv7U7cZYkh7AdbHo,1628
|
|
663
665
|
snaptrade_client/type/manual_trade_form_bracket.py,sha256=pbo5S70eZmEta6f6dH_n3f8xc6-7gLoj9gGNwRgjJng,1609
|
|
664
|
-
snaptrade_client/type/manual_trade_form_with_options.py,sha256=
|
|
666
|
+
snaptrade_client/type/manual_trade_form_with_options.py,sha256=CMtcNL1-nqA4rDK6gyyvM-76RDlcS7BpSzKJvgw4euA,2298
|
|
665
667
|
snaptrade_client/type/manual_trade_impact.py,sha256=djvwCJI-RgLPnD3Mm88Vv6To66nnMiD-ZEcSNuxyH3o,1195
|
|
666
668
|
snaptrade_client/type/manual_trade_replace_form.py,sha256=vza-Uwr022gRIHIpUYNAoKOmtEg5k0LFMhXrinHDPko,1421
|
|
667
669
|
snaptrade_client/type/manual_trade_symbol.py,sha256=0P6DXJhVNfk-lVEfkwb7t5lATDQdR1lYXlDkBQLhc0s,1461
|
|
@@ -747,6 +749,7 @@ snaptrade_client/type/time_in_force.py,sha256=KNosd1xbe4B8AFAZFi0P68wPreUz9w8W0g
|
|
|
747
749
|
snaptrade_client/type/time_in_force_strict.py,sha256=opH8YGpacD-5SD11dF_fpESJ1TERnbnkLvlKjs-dYQY,427
|
|
748
750
|
snaptrade_client/type/trade_id.py,sha256=4iIIlK2A4Shut27nLvw6HRPv6BXGDHNJ5Xer84K9i8s,385
|
|
749
751
|
snaptrade_client/type/trading_instrument.py,sha256=SiJ4-of50dQuHccuZA5iozAR7rMjicxpTe8wqTt-BAU,994
|
|
752
|
+
snaptrade_client/type/trading_session.py,sha256=hbmiQ9mRl0qQvAqLyj1FCD9whTNIprGOW1UWI3pH5Z8,419
|
|
750
753
|
snaptrade_client/type/transactions_status.py,sha256=W-SlpGb9dhxOBY7d2KNSi1H1sDw4oAUX7c0kYuA-GsM,1199
|
|
751
754
|
snaptrade_client/type/underlying_symbol.py,sha256=lne2ye556eJXKZxpureuSKd4Ebd4KrhWN8RmySjzkX0,2526
|
|
752
755
|
snaptrade_client/type/units.py,sha256=5Oy2dds7WXh0CpBEQYR5dFfSPUqmX0hQQWK79DPQCZA,385
|
|
@@ -763,7 +766,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
|
|
|
763
766
|
snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
|
|
764
767
|
snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
|
|
765
768
|
snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
|
|
766
|
-
snaptrade_python_sdk-11.0.
|
|
767
|
-
snaptrade_python_sdk-11.0.
|
|
768
|
-
snaptrade_python_sdk-11.0.
|
|
769
|
-
snaptrade_python_sdk-11.0.
|
|
769
|
+
snaptrade_python_sdk-11.0.142.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
|
|
770
|
+
snaptrade_python_sdk-11.0.142.dist-info/METADATA,sha256=uU35a3FeZXUBSl30ItdqyeK53j1tyNXq6otWnHGoKzU,95457
|
|
771
|
+
snaptrade_python_sdk-11.0.142.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
772
|
+
snaptrade_python_sdk-11.0.142.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|