snaptrade-python-sdk 11.0.132__py3-none-any.whl → 11.0.134__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_bracket.py +2 -12
- snaptrade_client/model/manual_trade_form_bracket.pyi +2 -12
- snaptrade_client/model/position.py +31 -2
- snaptrade_client/model/position.pyi +31 -2
- snaptrade_client/operation_parameter_map.py +0 -3
- snaptrade_client/paths/accounts_account_id_trading_bracket/post.py +0 -11
- snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi +0 -11
- snaptrade_client/type/manual_trade_form_bracket.py +0 -3
- snaptrade_client/type/position.py +3 -0
- {snaptrade_python_sdk-11.0.132.dist-info → snaptrade_python_sdk-11.0.134.dist-info}/METADATA +3 -8
- {snaptrade_python_sdk-11.0.132.dist-info → snaptrade_python_sdk-11.0.134.dist-info}/RECORD +16 -16
- {snaptrade_python_sdk-11.0.132.dist-info → snaptrade_python_sdk-11.0.134.dist-info}/LICENSE +0 -0
- {snaptrade_python_sdk-11.0.132.dist-info → snaptrade_python_sdk-11.0.134.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.134/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.134".\
|
|
442
442
|
format(env=sys.platform, pyversion=sys.version)
|
|
443
443
|
|
|
444
444
|
def get_host_settings(self):
|
|
@@ -69,7 +69,6 @@ class ManualTradeFormBracket(
|
|
|
69
69
|
@staticmethod
|
|
70
70
|
def take_profit() -> typing.Type['TakeProfit']:
|
|
71
71
|
return TakeProfit
|
|
72
|
-
symbol = schemas.StrSchema
|
|
73
72
|
|
|
74
73
|
|
|
75
74
|
class price(
|
|
@@ -118,7 +117,6 @@ class ManualTradeFormBracket(
|
|
|
118
117
|
"time_in_force": time_in_force,
|
|
119
118
|
"stop_loss": stop_loss,
|
|
120
119
|
"take_profit": take_profit,
|
|
121
|
-
"symbol": symbol,
|
|
122
120
|
"price": price,
|
|
123
121
|
"stop": stop,
|
|
124
122
|
"units": units,
|
|
@@ -149,9 +147,6 @@ class ManualTradeFormBracket(
|
|
|
149
147
|
@typing.overload
|
|
150
148
|
def __getitem__(self, name: typing_extensions.Literal["take_profit"]) -> 'TakeProfit': ...
|
|
151
149
|
|
|
152
|
-
@typing.overload
|
|
153
|
-
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
154
|
-
|
|
155
150
|
@typing.overload
|
|
156
151
|
def __getitem__(self, name: typing_extensions.Literal["price"]) -> MetaOapg.properties.price: ...
|
|
157
152
|
|
|
@@ -164,7 +159,7 @@ class ManualTradeFormBracket(
|
|
|
164
159
|
@typing.overload
|
|
165
160
|
def __getitem__(self, name: str) -> schemas.UnsetAnyTypeSchema: ...
|
|
166
161
|
|
|
167
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "
|
|
162
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "price", "stop", "units", ], str]):
|
|
168
163
|
# dict_instance[name] accessor
|
|
169
164
|
return super().__getitem__(name)
|
|
170
165
|
|
|
@@ -187,9 +182,6 @@ class ManualTradeFormBracket(
|
|
|
187
182
|
@typing.overload
|
|
188
183
|
def get_item_oapg(self, name: typing_extensions.Literal["take_profit"]) -> 'TakeProfit': ...
|
|
189
184
|
|
|
190
|
-
@typing.overload
|
|
191
|
-
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
192
|
-
|
|
193
185
|
@typing.overload
|
|
194
186
|
def get_item_oapg(self, name: typing_extensions.Literal["price"]) -> typing.Union[MetaOapg.properties.price, schemas.Unset]: ...
|
|
195
187
|
|
|
@@ -202,7 +194,7 @@ class ManualTradeFormBracket(
|
|
|
202
194
|
@typing.overload
|
|
203
195
|
def get_item_oapg(self, name: str) -> typing.Union[schemas.UnsetAnyTypeSchema, schemas.Unset]: ...
|
|
204
196
|
|
|
205
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "
|
|
197
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "price", "stop", "units", ], str]):
|
|
206
198
|
return super().get_item_oapg(name)
|
|
207
199
|
|
|
208
200
|
|
|
@@ -215,7 +207,6 @@ class ManualTradeFormBracket(
|
|
|
215
207
|
action: 'ActionStrictWithOptions',
|
|
216
208
|
instrument: 'TradingInstrument',
|
|
217
209
|
order_type: 'OrderTypeStrict',
|
|
218
|
-
symbol: typing.Union[MetaOapg.properties.symbol, str, schemas.Unset] = schemas.unset,
|
|
219
210
|
price: typing.Union[MetaOapg.properties.price, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
220
211
|
stop: typing.Union[MetaOapg.properties.stop, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
221
212
|
units: typing.Union[MetaOapg.properties.units, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
@@ -231,7 +222,6 @@ class ManualTradeFormBracket(
|
|
|
231
222
|
action=action,
|
|
232
223
|
instrument=instrument,
|
|
233
224
|
order_type=order_type,
|
|
234
|
-
symbol=symbol,
|
|
235
225
|
price=price,
|
|
236
226
|
stop=stop,
|
|
237
227
|
units=units,
|
|
@@ -69,7 +69,6 @@ class ManualTradeFormBracket(
|
|
|
69
69
|
@staticmethod
|
|
70
70
|
def take_profit() -> typing.Type['TakeProfit']:
|
|
71
71
|
return TakeProfit
|
|
72
|
-
symbol = schemas.StrSchema
|
|
73
72
|
|
|
74
73
|
|
|
75
74
|
class price(
|
|
@@ -118,7 +117,6 @@ class ManualTradeFormBracket(
|
|
|
118
117
|
"time_in_force": time_in_force,
|
|
119
118
|
"stop_loss": stop_loss,
|
|
120
119
|
"take_profit": take_profit,
|
|
121
|
-
"symbol": symbol,
|
|
122
120
|
"price": price,
|
|
123
121
|
"stop": stop,
|
|
124
122
|
"units": units,
|
|
@@ -149,9 +147,6 @@ class ManualTradeFormBracket(
|
|
|
149
147
|
@typing.overload
|
|
150
148
|
def __getitem__(self, name: typing_extensions.Literal["take_profit"]) -> 'TakeProfit': ...
|
|
151
149
|
|
|
152
|
-
@typing.overload
|
|
153
|
-
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
154
|
-
|
|
155
150
|
@typing.overload
|
|
156
151
|
def __getitem__(self, name: typing_extensions.Literal["price"]) -> MetaOapg.properties.price: ...
|
|
157
152
|
|
|
@@ -164,7 +159,7 @@ class ManualTradeFormBracket(
|
|
|
164
159
|
@typing.overload
|
|
165
160
|
def __getitem__(self, name: str) -> schemas.UnsetAnyTypeSchema: ...
|
|
166
161
|
|
|
167
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "
|
|
162
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "price", "stop", "units", ], str]):
|
|
168
163
|
# dict_instance[name] accessor
|
|
169
164
|
return super().__getitem__(name)
|
|
170
165
|
|
|
@@ -187,9 +182,6 @@ class ManualTradeFormBracket(
|
|
|
187
182
|
@typing.overload
|
|
188
183
|
def get_item_oapg(self, name: typing_extensions.Literal["take_profit"]) -> 'TakeProfit': ...
|
|
189
184
|
|
|
190
|
-
@typing.overload
|
|
191
|
-
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
192
|
-
|
|
193
185
|
@typing.overload
|
|
194
186
|
def get_item_oapg(self, name: typing_extensions.Literal["price"]) -> typing.Union[MetaOapg.properties.price, schemas.Unset]: ...
|
|
195
187
|
|
|
@@ -202,7 +194,7 @@ class ManualTradeFormBracket(
|
|
|
202
194
|
@typing.overload
|
|
203
195
|
def get_item_oapg(self, name: str) -> typing.Union[schemas.UnsetAnyTypeSchema, schemas.Unset]: ...
|
|
204
196
|
|
|
205
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "
|
|
197
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["action", "instrument", "order_type", "time_in_force", "stop_loss", "take_profit", "price", "stop", "units", ], str]):
|
|
206
198
|
return super().get_item_oapg(name)
|
|
207
199
|
|
|
208
200
|
|
|
@@ -215,7 +207,6 @@ class ManualTradeFormBracket(
|
|
|
215
207
|
action: 'ActionStrictWithOptions',
|
|
216
208
|
instrument: 'TradingInstrument',
|
|
217
209
|
order_type: 'OrderTypeStrict',
|
|
218
|
-
symbol: typing.Union[MetaOapg.properties.symbol, str, schemas.Unset] = schemas.unset,
|
|
219
210
|
price: typing.Union[MetaOapg.properties.price, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
220
211
|
stop: typing.Union[MetaOapg.properties.stop, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
221
212
|
units: typing.Union[MetaOapg.properties.units, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
@@ -231,7 +222,6 @@ class ManualTradeFormBracket(
|
|
|
231
222
|
action=action,
|
|
232
223
|
instrument=instrument,
|
|
233
224
|
order_type=order_type,
|
|
234
|
-
symbol=symbol,
|
|
235
225
|
price=price,
|
|
236
226
|
stop=stop,
|
|
237
227
|
units=units,
|
|
@@ -177,6 +177,26 @@ class Position(
|
|
|
177
177
|
_configuration=_configuration,
|
|
178
178
|
**kwargs,
|
|
179
179
|
)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class cash_equivalent(
|
|
183
|
+
schemas.BoolBase,
|
|
184
|
+
schemas.NoneBase,
|
|
185
|
+
schemas.Schema,
|
|
186
|
+
schemas.NoneBoolMixin
|
|
187
|
+
):
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
def __new__(
|
|
191
|
+
cls,
|
|
192
|
+
*args: typing.Union[None, bool, ],
|
|
193
|
+
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
194
|
+
) -> 'cash_equivalent':
|
|
195
|
+
return super().__new__(
|
|
196
|
+
cls,
|
|
197
|
+
*args,
|
|
198
|
+
_configuration=_configuration,
|
|
199
|
+
)
|
|
180
200
|
__annotations__ = {
|
|
181
201
|
"symbol": symbol,
|
|
182
202
|
"units": units,
|
|
@@ -185,6 +205,7 @@ class Position(
|
|
|
185
205
|
"average_purchase_price": average_purchase_price,
|
|
186
206
|
"fractional_units": fractional_units,
|
|
187
207
|
"currency": currency,
|
|
208
|
+
"cash_equivalent": cash_equivalent,
|
|
188
209
|
}
|
|
189
210
|
additional_properties = schemas.AnyTypeSchema
|
|
190
211
|
|
|
@@ -209,10 +230,13 @@ class Position(
|
|
|
209
230
|
@typing.overload
|
|
210
231
|
def __getitem__(self, name: typing_extensions.Literal["currency"]) -> MetaOapg.properties.currency: ...
|
|
211
232
|
|
|
233
|
+
@typing.overload
|
|
234
|
+
def __getitem__(self, name: typing_extensions.Literal["cash_equivalent"]) -> MetaOapg.properties.cash_equivalent: ...
|
|
235
|
+
|
|
212
236
|
@typing.overload
|
|
213
237
|
def __getitem__(self, name: str) -> MetaOapg.additional_properties: ...
|
|
214
238
|
|
|
215
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], str, ]):
|
|
239
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], typing_extensions.Literal["cash_equivalent"], str, ]):
|
|
216
240
|
# dict_instance[name] accessor
|
|
217
241
|
return super().__getitem__(name)
|
|
218
242
|
|
|
@@ -237,10 +261,13 @@ class Position(
|
|
|
237
261
|
@typing.overload
|
|
238
262
|
def get_item_oapg(self, name: typing_extensions.Literal["currency"]) -> typing.Union[MetaOapg.properties.currency, schemas.Unset]: ...
|
|
239
263
|
|
|
264
|
+
@typing.overload
|
|
265
|
+
def get_item_oapg(self, name: typing_extensions.Literal["cash_equivalent"]) -> typing.Union[MetaOapg.properties.cash_equivalent, schemas.Unset]: ...
|
|
266
|
+
|
|
240
267
|
@typing.overload
|
|
241
268
|
def get_item_oapg(self, name: str) -> typing.Union[MetaOapg.additional_properties, schemas.Unset]: ...
|
|
242
269
|
|
|
243
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], str, ]):
|
|
270
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], typing_extensions.Literal["cash_equivalent"], str, ]):
|
|
244
271
|
return super().get_item_oapg(name)
|
|
245
272
|
|
|
246
273
|
def __new__(
|
|
@@ -253,6 +280,7 @@ class Position(
|
|
|
253
280
|
average_purchase_price: typing.Union[MetaOapg.properties.average_purchase_price, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
254
281
|
fractional_units: typing.Union[MetaOapg.properties.fractional_units, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
255
282
|
currency: typing.Union[MetaOapg.properties.currency, 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,
|
|
283
|
+
cash_equivalent: typing.Union[MetaOapg.properties.cash_equivalent, None, bool, schemas.Unset] = schemas.unset,
|
|
256
284
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
257
285
|
**kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ],
|
|
258
286
|
) -> 'Position':
|
|
@@ -266,6 +294,7 @@ class Position(
|
|
|
266
294
|
average_purchase_price=average_purchase_price,
|
|
267
295
|
fractional_units=fractional_units,
|
|
268
296
|
currency=currency,
|
|
297
|
+
cash_equivalent=cash_equivalent,
|
|
269
298
|
_configuration=_configuration,
|
|
270
299
|
**kwargs,
|
|
271
300
|
)
|
|
@@ -177,6 +177,26 @@ class Position(
|
|
|
177
177
|
_configuration=_configuration,
|
|
178
178
|
**kwargs,
|
|
179
179
|
)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class cash_equivalent(
|
|
183
|
+
schemas.BoolBase,
|
|
184
|
+
schemas.NoneBase,
|
|
185
|
+
schemas.Schema,
|
|
186
|
+
schemas.NoneBoolMixin
|
|
187
|
+
):
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
def __new__(
|
|
191
|
+
cls,
|
|
192
|
+
*args: typing.Union[None, bool, ],
|
|
193
|
+
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
194
|
+
) -> 'cash_equivalent':
|
|
195
|
+
return super().__new__(
|
|
196
|
+
cls,
|
|
197
|
+
*args,
|
|
198
|
+
_configuration=_configuration,
|
|
199
|
+
)
|
|
180
200
|
__annotations__ = {
|
|
181
201
|
"symbol": symbol,
|
|
182
202
|
"units": units,
|
|
@@ -185,6 +205,7 @@ class Position(
|
|
|
185
205
|
"average_purchase_price": average_purchase_price,
|
|
186
206
|
"fractional_units": fractional_units,
|
|
187
207
|
"currency": currency,
|
|
208
|
+
"cash_equivalent": cash_equivalent,
|
|
188
209
|
}
|
|
189
210
|
additional_properties = schemas.AnyTypeSchema
|
|
190
211
|
|
|
@@ -209,10 +230,13 @@ class Position(
|
|
|
209
230
|
@typing.overload
|
|
210
231
|
def __getitem__(self, name: typing_extensions.Literal["currency"]) -> MetaOapg.properties.currency: ...
|
|
211
232
|
|
|
233
|
+
@typing.overload
|
|
234
|
+
def __getitem__(self, name: typing_extensions.Literal["cash_equivalent"]) -> MetaOapg.properties.cash_equivalent: ...
|
|
235
|
+
|
|
212
236
|
@typing.overload
|
|
213
237
|
def __getitem__(self, name: str) -> MetaOapg.additional_properties: ...
|
|
214
238
|
|
|
215
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], str, ]):
|
|
239
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], typing_extensions.Literal["cash_equivalent"], str, ]):
|
|
216
240
|
# dict_instance[name] accessor
|
|
217
241
|
return super().__getitem__(name)
|
|
218
242
|
|
|
@@ -237,10 +261,13 @@ class Position(
|
|
|
237
261
|
@typing.overload
|
|
238
262
|
def get_item_oapg(self, name: typing_extensions.Literal["currency"]) -> typing.Union[MetaOapg.properties.currency, schemas.Unset]: ...
|
|
239
263
|
|
|
264
|
+
@typing.overload
|
|
265
|
+
def get_item_oapg(self, name: typing_extensions.Literal["cash_equivalent"]) -> typing.Union[MetaOapg.properties.cash_equivalent, schemas.Unset]: ...
|
|
266
|
+
|
|
240
267
|
@typing.overload
|
|
241
268
|
def get_item_oapg(self, name: str) -> typing.Union[MetaOapg.additional_properties, schemas.Unset]: ...
|
|
242
269
|
|
|
243
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], str, ]):
|
|
270
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["symbol"], typing_extensions.Literal["units"], typing_extensions.Literal["price"], typing_extensions.Literal["open_pnl"], typing_extensions.Literal["average_purchase_price"], typing_extensions.Literal["fractional_units"], typing_extensions.Literal["currency"], typing_extensions.Literal["cash_equivalent"], str, ]):
|
|
244
271
|
return super().get_item_oapg(name)
|
|
245
272
|
|
|
246
273
|
def __new__(
|
|
@@ -253,6 +280,7 @@ class Position(
|
|
|
253
280
|
average_purchase_price: typing.Union[MetaOapg.properties.average_purchase_price, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
254
281
|
fractional_units: typing.Union[MetaOapg.properties.fractional_units, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset,
|
|
255
282
|
currency: typing.Union[MetaOapg.properties.currency, 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,
|
|
283
|
+
cash_equivalent: typing.Union[MetaOapg.properties.cash_equivalent, None, bool, schemas.Unset] = schemas.unset,
|
|
256
284
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
257
285
|
**kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ],
|
|
258
286
|
) -> 'Position':
|
|
@@ -266,6 +294,7 @@ class Position(
|
|
|
266
294
|
average_purchase_price=average_purchase_price,
|
|
267
295
|
fractional_units=fractional_units,
|
|
268
296
|
currency=currency,
|
|
297
|
+
cash_equivalent=cash_equivalent,
|
|
269
298
|
_configuration=_configuration,
|
|
270
299
|
**kwargs,
|
|
271
300
|
)
|
|
@@ -238,7 +238,6 @@ class BaseApi(api_client.Api):
|
|
|
238
238
|
account_id: typing.Optional[str] = None,
|
|
239
239
|
user_id: typing.Optional[str] = None,
|
|
240
240
|
user_secret: typing.Optional[str] = None,
|
|
241
|
-
symbol: typing.Optional[str] = None,
|
|
242
241
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
243
242
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
244
243
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -251,8 +250,6 @@ class BaseApi(api_client.Api):
|
|
|
251
250
|
_body = {}
|
|
252
251
|
if action is not None:
|
|
253
252
|
_body["action"] = action
|
|
254
|
-
if symbol is not None:
|
|
255
|
-
_body["symbol"] = symbol
|
|
256
253
|
if instrument is not None:
|
|
257
254
|
_body["instrument"] = instrument
|
|
258
255
|
if order_type is not None:
|
|
@@ -558,7 +555,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
558
555
|
account_id: typing.Optional[str] = None,
|
|
559
556
|
user_id: typing.Optional[str] = None,
|
|
560
557
|
user_secret: typing.Optional[str] = None,
|
|
561
|
-
symbol: typing.Optional[str] = None,
|
|
562
558
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
563
559
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
564
560
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -583,7 +579,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
583
579
|
account_id=account_id,
|
|
584
580
|
user_id=user_id,
|
|
585
581
|
user_secret=user_secret,
|
|
586
|
-
symbol=symbol,
|
|
587
582
|
price=price,
|
|
588
583
|
stop=stop,
|
|
589
584
|
units=units,
|
|
@@ -607,7 +602,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
607
602
|
account_id: typing.Optional[str] = None,
|
|
608
603
|
user_id: typing.Optional[str] = None,
|
|
609
604
|
user_secret: typing.Optional[str] = None,
|
|
610
|
-
symbol: typing.Optional[str] = None,
|
|
611
605
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
612
606
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
613
607
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -631,7 +625,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
631
625
|
account_id=account_id,
|
|
632
626
|
user_id=user_id,
|
|
633
627
|
user_secret=user_secret,
|
|
634
|
-
symbol=symbol,
|
|
635
628
|
price=price,
|
|
636
629
|
stop=stop,
|
|
637
630
|
units=units,
|
|
@@ -657,7 +650,6 @@ class ApiForpost(BaseApi):
|
|
|
657
650
|
account_id: typing.Optional[str] = None,
|
|
658
651
|
user_id: typing.Optional[str] = None,
|
|
659
652
|
user_secret: typing.Optional[str] = None,
|
|
660
|
-
symbol: typing.Optional[str] = None,
|
|
661
653
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
662
654
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
663
655
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -682,7 +674,6 @@ class ApiForpost(BaseApi):
|
|
|
682
674
|
account_id=account_id,
|
|
683
675
|
user_id=user_id,
|
|
684
676
|
user_secret=user_secret,
|
|
685
|
-
symbol=symbol,
|
|
686
677
|
price=price,
|
|
687
678
|
stop=stop,
|
|
688
679
|
units=units,
|
|
@@ -706,7 +697,6 @@ class ApiForpost(BaseApi):
|
|
|
706
697
|
account_id: typing.Optional[str] = None,
|
|
707
698
|
user_id: typing.Optional[str] = None,
|
|
708
699
|
user_secret: typing.Optional[str] = None,
|
|
709
|
-
symbol: typing.Optional[str] = None,
|
|
710
700
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
711
701
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
712
702
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -730,7 +720,6 @@ class ApiForpost(BaseApi):
|
|
|
730
720
|
account_id=account_id,
|
|
731
721
|
user_id=user_id,
|
|
732
722
|
user_secret=user_secret,
|
|
733
|
-
symbol=symbol,
|
|
734
723
|
price=price,
|
|
735
724
|
stop=stop,
|
|
736
725
|
units=units,
|
|
@@ -225,7 +225,6 @@ class BaseApi(api_client.Api):
|
|
|
225
225
|
account_id: typing.Optional[str] = None,
|
|
226
226
|
user_id: typing.Optional[str] = None,
|
|
227
227
|
user_secret: typing.Optional[str] = None,
|
|
228
|
-
symbol: typing.Optional[str] = None,
|
|
229
228
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
230
229
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
231
230
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -238,8 +237,6 @@ class BaseApi(api_client.Api):
|
|
|
238
237
|
_body = {}
|
|
239
238
|
if action is not None:
|
|
240
239
|
_body["action"] = action
|
|
241
|
-
if symbol is not None:
|
|
242
|
-
_body["symbol"] = symbol
|
|
243
240
|
if instrument is not None:
|
|
244
241
|
_body["instrument"] = instrument
|
|
245
242
|
if order_type is not None:
|
|
@@ -545,7 +542,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
545
542
|
account_id: typing.Optional[str] = None,
|
|
546
543
|
user_id: typing.Optional[str] = None,
|
|
547
544
|
user_secret: typing.Optional[str] = None,
|
|
548
|
-
symbol: typing.Optional[str] = None,
|
|
549
545
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
550
546
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
551
547
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -570,7 +566,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
570
566
|
account_id=account_id,
|
|
571
567
|
user_id=user_id,
|
|
572
568
|
user_secret=user_secret,
|
|
573
|
-
symbol=symbol,
|
|
574
569
|
price=price,
|
|
575
570
|
stop=stop,
|
|
576
571
|
units=units,
|
|
@@ -594,7 +589,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
594
589
|
account_id: typing.Optional[str] = None,
|
|
595
590
|
user_id: typing.Optional[str] = None,
|
|
596
591
|
user_secret: typing.Optional[str] = None,
|
|
597
|
-
symbol: typing.Optional[str] = None,
|
|
598
592
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
599
593
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
600
594
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -618,7 +612,6 @@ class PlaceBracketOrder(BaseApi):
|
|
|
618
612
|
account_id=account_id,
|
|
619
613
|
user_id=user_id,
|
|
620
614
|
user_secret=user_secret,
|
|
621
|
-
symbol=symbol,
|
|
622
615
|
price=price,
|
|
623
616
|
stop=stop,
|
|
624
617
|
units=units,
|
|
@@ -644,7 +637,6 @@ class ApiForpost(BaseApi):
|
|
|
644
637
|
account_id: typing.Optional[str] = None,
|
|
645
638
|
user_id: typing.Optional[str] = None,
|
|
646
639
|
user_secret: typing.Optional[str] = None,
|
|
647
|
-
symbol: typing.Optional[str] = None,
|
|
648
640
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
649
641
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
650
642
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -669,7 +661,6 @@ class ApiForpost(BaseApi):
|
|
|
669
661
|
account_id=account_id,
|
|
670
662
|
user_id=user_id,
|
|
671
663
|
user_secret=user_secret,
|
|
672
|
-
symbol=symbol,
|
|
673
664
|
price=price,
|
|
674
665
|
stop=stop,
|
|
675
666
|
units=units,
|
|
@@ -693,7 +684,6 @@ class ApiForpost(BaseApi):
|
|
|
693
684
|
account_id: typing.Optional[str] = None,
|
|
694
685
|
user_id: typing.Optional[str] = None,
|
|
695
686
|
user_secret: typing.Optional[str] = None,
|
|
696
|
-
symbol: typing.Optional[str] = None,
|
|
697
687
|
price: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
698
688
|
stop: typing.Optional[typing.Optional[typing.Union[int, float]]] = None,
|
|
699
689
|
units: typing.Optional[typing.Union[int, float]] = None,
|
|
@@ -717,7 +707,6 @@ class ApiForpost(BaseApi):
|
|
|
717
707
|
account_id=account_id,
|
|
718
708
|
user_id=user_id,
|
|
719
709
|
user_secret=user_secret,
|
|
720
|
-
symbol=symbol,
|
|
721
710
|
price=price,
|
|
722
711
|
stop=stop,
|
|
723
712
|
units=units,
|
|
@@ -37,9 +37,6 @@ class RequiredManualTradeFormBracket(TypedDict):
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
class OptionalManualTradeFormBracket(TypedDict, total=False):
|
|
40
|
-
# The security's trading ticker symbol.
|
|
41
|
-
symbol: str
|
|
42
|
-
|
|
43
40
|
# The limit price for `Limit` and `StopLimit` orders.
|
|
44
41
|
price: typing.Optional[typing.Union[int, float]]
|
|
45
42
|
|
|
@@ -43,5 +43,8 @@ class OptionalPosition(TypedDict, total=False):
|
|
|
43
43
|
# The 'position currency' (`price` and `average_purchase_price`). This currency can potentially be different from the 'listing currency' of the security. The 'listing currency' is what's quoted on the listing exchange, while the 'position currency' is what the brokerage uses to hold and value your position.
|
|
44
44
|
currency: Currency
|
|
45
45
|
|
|
46
|
+
# If the position is a cash equivalent (usually a money market fund) that is also counted in account cash balance and buying power
|
|
47
|
+
cash_equivalent: typing.Optional[bool]
|
|
48
|
+
|
|
46
49
|
class Position(RequiredPosition, OptionalPosition):
|
|
47
50
|
pass
|
{snaptrade_python_sdk-11.0.132.dist-info → snaptrade_python_sdk-11.0.134.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.134
|
|
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.134)
|
|
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.134
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
## Getting Started<a id="getting-started"></a>
|
|
@@ -1887,7 +1887,6 @@ place_bracket_order_response = snaptrade.trading.place_bracket_order(
|
|
|
1887
1887
|
account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
|
|
1888
1888
|
user_id="snaptrade-user-123",
|
|
1889
1889
|
user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
|
|
1890
|
-
symbol="AAPL",
|
|
1891
1890
|
price=31.33,
|
|
1892
1891
|
stop=31.33,
|
|
1893
1892
|
units=10.5,
|
|
@@ -1919,10 +1918,6 @@ The ID of the account to execute the trade on.
|
|
|
1919
1918
|
|
|
1920
1919
|
##### user_secret: `str`<a id="user_secret-str"></a>
|
|
1921
1920
|
|
|
1922
|
-
##### symbol: `str`<a id="symbol-str"></a>
|
|
1923
|
-
|
|
1924
|
-
The security's trading ticker symbol.
|
|
1925
|
-
|
|
1926
1921
|
##### price: `Optional[Union[int, float]]`<a id="price-optionalunionint-float"></a>
|
|
1927
1922
|
|
|
1928
1923
|
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=ELCH0_FvkG4KWLu6kjrtMICc9TDuV0Zw_Ly8_Hpubg4,820
|
|
2
|
+
snaptrade_client/api_client.py,sha256=kPAg6nmaM_GZyylwS5qmlaRi2_Pss0ZEy4JYYnsg-18,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=1Ku6LPL0SxdJTNdDA3GI16c6AYaC4eDmNlPgDU4Pz6c,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
|
|
@@ -219,8 +219,8 @@ snaptrade_client/model/manual_trade_balance.py,sha256=Wm8edEwWtHDRKgwd1nQE60ofxn
|
|
|
219
219
|
snaptrade_client/model/manual_trade_balance.pyi,sha256=Wm8edEwWtHDRKgwd1nQE60ofxnQOwOQMigvguXL8YfM,4505
|
|
220
220
|
snaptrade_client/model/manual_trade_form.py,sha256=lExfLWPAIsEHtMRFrd5PWipggsAHZJM7ICxirYTRDQo,8863
|
|
221
221
|
snaptrade_client/model/manual_trade_form.pyi,sha256=lExfLWPAIsEHtMRFrd5PWipggsAHZJM7ICxirYTRDQo,8863
|
|
222
|
-
snaptrade_client/model/manual_trade_form_bracket.py,sha256=
|
|
223
|
-
snaptrade_client/model/manual_trade_form_bracket.pyi,sha256=
|
|
222
|
+
snaptrade_client/model/manual_trade_form_bracket.py,sha256=uJKVqZFaQLuDx7YUO9W4e63vQIG5jMqFXSHSfnBMi1o,8709
|
|
223
|
+
snaptrade_client/model/manual_trade_form_bracket.pyi,sha256=uJKVqZFaQLuDx7YUO9W4e63vQIG5jMqFXSHSfnBMi1o,8709
|
|
224
224
|
snaptrade_client/model/manual_trade_form_with_options.py,sha256=PPUYUyvgIcQO4YPFYZivqV49jVj1w3BA71w11jJhU24,11960
|
|
225
225
|
snaptrade_client/model/manual_trade_form_with_options.pyi,sha256=PPUYUyvgIcQO4YPFYZivqV49jVj1w3BA71w11jJhU24,11960
|
|
226
226
|
snaptrade_client/model/manual_trade_impact.py,sha256=zgr_9AHr8spkoYHncJB_V0axP-eNLfHXWQ_arZOfbQw,7078
|
|
@@ -323,8 +323,8 @@ snaptrade_client/model/performance_custom_bad_tickers.py,sha256=Bsr6upKbMwdnN7Sy
|
|
|
323
323
|
snaptrade_client/model/performance_custom_bad_tickers.pyi,sha256=Bsr6upKbMwdnN7SyfjxrLDlqUTizgUaywXggDRjMths,1870
|
|
324
324
|
snaptrade_client/model/portfolio_group_id.py,sha256=5RE_TEWeQAZeHqctwrMSqt8pCtgph_t9uJQKVAS7Ed0,607
|
|
325
325
|
snaptrade_client/model/portfolio_group_id.pyi,sha256=5RE_TEWeQAZeHqctwrMSqt8pCtgph_t9uJQKVAS7Ed0,607
|
|
326
|
-
snaptrade_client/model/position.py,sha256=
|
|
327
|
-
snaptrade_client/model/position.pyi,sha256=
|
|
326
|
+
snaptrade_client/model/position.py,sha256=6mgxLRHhmpjRpUsKE_6g_SJK1d6_C-OSY5SRWRZnPRw,12830
|
|
327
|
+
snaptrade_client/model/position.pyi,sha256=6mgxLRHhmpjRpUsKE_6g_SJK1d6_C-OSY5SRWRZnPRw,12830
|
|
328
328
|
snaptrade_client/model/position_symbol.py,sha256=kopDWLHnN4pnCTlrDz9dMAeQm2s6E8C-AG5ESO7uCPU,6509
|
|
329
329
|
snaptrade_client/model/position_symbol.pyi,sha256=kopDWLHnN4pnCTlrDz9dMAeQm2s6E8C-AG5ESO7uCPU,6509
|
|
330
330
|
snaptrade_client/model/price.py,sha256=Se7jPRmTBfPyAMztvI-fBc6fNZaEHENFFY6xgqz6Gkg,1120
|
|
@@ -422,7 +422,7 @@ snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE
|
|
|
422
422
|
snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
423
423
|
snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
424
424
|
snaptrade_client/models/__init__.py,sha256=nEO5bHCM19h-AQp0rl6XNHrTZ4Aw4ffqVOPRYOPOr_I,13312
|
|
425
|
-
snaptrade_client/operation_parameter_map.py,sha256=
|
|
425
|
+
snaptrade_client/operation_parameter_map.py,sha256=PH3QEPjygHO9u-iP05zHSPKSWfAywl74agnkrRWxqHc,18177
|
|
426
426
|
snaptrade_client/paths/__init__.py,sha256=_AIs8vbi_zgRHbgZ2k64V6waRP3RiZuyL4nRaZbpLMY,3519
|
|
427
427
|
snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
|
|
428
428
|
snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
|
|
@@ -472,8 +472,8 @@ snaptrade_client/paths/accounts_account_id_symbols/__init__.py,sha256=W4appqLUjn
|
|
|
472
472
|
snaptrade_client/paths/accounts_account_id_symbols/post.py,sha256=lY_qckOwveAIspofejARKiQI4R4M-eA_sMrS1qgtIqE,22211
|
|
473
473
|
snaptrade_client/paths/accounts_account_id_symbols/post.pyi,sha256=7BOOwzqpCb39oCxp_ZKSVpQx1fQjkwBpWGyjptFM1C0,22009
|
|
474
474
|
snaptrade_client/paths/accounts_account_id_trading_bracket/__init__.py,sha256=QBPAt6nOa154uffyl5sircs20NaIQEyV_d3ZBDGFIDo,361
|
|
475
|
-
snaptrade_client/paths/accounts_account_id_trading_bracket/post.py,sha256=
|
|
476
|
-
snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi,sha256=
|
|
475
|
+
snaptrade_client/paths/accounts_account_id_trading_bracket/post.py,sha256=gMbY75_mMGclQFVysD0xS7lShEad1_KOOkLBpVrvKS0,28044
|
|
476
|
+
snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi,sha256=RsuVePcr_BEDjlp1XIYTeKU3S_lGRfFC75PZGBri7EE,27790
|
|
477
477
|
snaptrade_client/paths/accounts_account_id_trading_cancel/__init__.py,sha256=MJxSaVr3G9c_q18MFEhXT13t8kAeMsXQvpmfukC4T-8,359
|
|
478
478
|
snaptrade_client/paths/accounts_account_id_trading_cancel/post.py,sha256=Ph-TuHSR34RGCPMDn31AcQ1OmaVjUhOuVa9AO5mV8r0,23404
|
|
479
479
|
snaptrade_client/paths/accounts_account_id_trading_cancel/post.pyi,sha256=BLAyPyOErz9_q0ggtkiIGY2q6hLwyg2V83VKcXLO_84,23180
|
|
@@ -660,7 +660,7 @@ snaptrade_client/type/manual_trade.py,sha256=YHtcSZx49AYuQKOtztQB34E_O8zMbozfZ9t
|
|
|
660
660
|
snaptrade_client/type/manual_trade_and_impact.py,sha256=Itewupnzd0ui_8do2Bll-l7FBOrYwvxpg9d0d_r2ngk,1018
|
|
661
661
|
snaptrade_client/type/manual_trade_balance.py,sha256=K_eBMvo05GpZCvnWKQzUY2NFqyPEAH8GrdDreURl6s0,942
|
|
662
662
|
snaptrade_client/type/manual_trade_form.py,sha256=VENobS352pltGcepu3Cg9uvMZcPZv7U7cZYkh7AdbHo,1628
|
|
663
|
-
snaptrade_client/type/manual_trade_form_bracket.py,sha256=
|
|
663
|
+
snaptrade_client/type/manual_trade_form_bracket.py,sha256=pbo5S70eZmEta6f6dH_n3f8xc6-7gLoj9gGNwRgjJng,1609
|
|
664
664
|
snaptrade_client/type/manual_trade_form_with_options.py,sha256=KpY_Wetc67tSZZA9Z2N6ig0jCycpaTPRTjSNtNj7cEU,2196
|
|
665
665
|
snaptrade_client/type/manual_trade_impact.py,sha256=djvwCJI-RgLPnD3Mm88Vv6To66nnMiD-ZEcSNuxyH3o,1195
|
|
666
666
|
snaptrade_client/type/manual_trade_replace_form.py,sha256=vza-Uwr022gRIHIpUYNAoKOmtEg5k0LFMhXrinHDPko,1421
|
|
@@ -712,7 +712,7 @@ snaptrade_client/type/past_value.py,sha256=mMP6TYBvtwl2937LFv_G0H3S_uXNAy1LPnRlq
|
|
|
712
712
|
snaptrade_client/type/performance_custom.py,sha256=QGx0GPYVrgGYo-bLVnijaak7ZGB-ti-1HSuEbjkAMi4,2665
|
|
713
713
|
snaptrade_client/type/performance_custom_bad_tickers.py,sha256=dkXUonxrer2IAKCdZ2XJCRZmuN5Pz8QlpKLqB7Ze7I4,435
|
|
714
714
|
snaptrade_client/type/portfolio_group_id.py,sha256=5J6sEjGjzmAWd48oyxW-zUC5t0EI4Ehz_d0htMJ93X4,394
|
|
715
|
-
snaptrade_client/type/position.py,sha256=
|
|
715
|
+
snaptrade_client/type/position.py,sha256=6kDAGLwhnqdl1HngRHEmGydHe4zs5Uklw_dOgonEzhQ,2371
|
|
716
716
|
snaptrade_client/type/position_symbol.py,sha256=DyBMR4TVpC9Dljr46iI2h39LOlnk3xBtgrZ_Cpi8yck,1704
|
|
717
717
|
snaptrade_client/type/price.py,sha256=bg4ITnU07qZjLdWjYI4FhYYpGb9sVgKnzuuox5MTKy4,385
|
|
718
718
|
snaptrade_client/type/rate_of_return_object.py,sha256=tOi03aj61p009q97yx9d1q6q4VgYYLdlT0_f24dsBhg,876
|
|
@@ -763,7 +763,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
|
|
|
763
763
|
snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
|
|
764
764
|
snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
|
|
765
765
|
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.
|
|
766
|
+
snaptrade_python_sdk-11.0.134.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
|
|
767
|
+
snaptrade_python_sdk-11.0.134.dist-info/METADATA,sha256=QRdykaFCrd3vzMCwDvHDcgEEKogzFb_IiQmCZcNmDmY,93410
|
|
768
|
+
snaptrade_python_sdk-11.0.134.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
769
|
+
snaptrade_python_sdk-11.0.134.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|