snaptrade-python-sdk 11.0.117__py3-none-any.whl → 11.0.119__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.
Files changed (50) hide show
  1. snaptrade_client/__init__.py +1 -1
  2. snaptrade_client/api_client.py +1 -1
  3. snaptrade_client/apis/path_to_api.py +9 -9
  4. snaptrade_client/apis/paths/accounts_account_id_trading_crypto.py +7 -0
  5. snaptrade_client/apis/paths/accounts_account_id_trading_crypto_preview.py +7 -0
  6. snaptrade_client/apis/paths/accounts_account_id_trading_replace.py +7 -0
  7. snaptrade_client/apis/tags/trading_api_generated.py +5 -5
  8. snaptrade_client/configuration.py +1 -1
  9. snaptrade_client/model/crypto_order_form.py +249 -0
  10. snaptrade_client/model/crypto_order_form.pyi +229 -0
  11. snaptrade_client/model/{simple_order_preview.pyi → crypto_order_preview.py} +8 -8
  12. snaptrade_client/model/{simple_order_preview.py → crypto_order_preview.pyi} +8 -8
  13. snaptrade_client/model/{simple_order_preview_estimated_fee.py → crypto_order_preview_estimated_fee.py} +2 -2
  14. snaptrade_client/model/{simple_order_preview_estimated_fee.pyi → crypto_order_preview_estimated_fee.pyi} +2 -2
  15. snaptrade_client/model/crypto_trading_instrument.py +113 -0
  16. snaptrade_client/model/crypto_trading_instrument.pyi +106 -0
  17. snaptrade_client/model/manual_trade_replace_form.py +15 -3
  18. snaptrade_client/model/manual_trade_replace_form.pyi +15 -3
  19. snaptrade_client/model/simple_order_form.py +14 -15
  20. snaptrade_client/model/simple_order_form.pyi +14 -15
  21. snaptrade_client/models/__init__.py +4 -2
  22. snaptrade_client/operation_parameter_map.py +43 -43
  23. snaptrade_client/paths/__init__.py +3 -3
  24. snaptrade_client/paths/accounts_account_id_orders_cancel/post.py +6 -2
  25. snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi +6 -2
  26. snaptrade_client/paths/accounts_account_id_trading_cancel/post.py +2 -2
  27. snaptrade_client/paths/accounts_account_id_trading_cancel/post.pyi +2 -2
  28. snaptrade_client/paths/{accounts_account_id_trading_simple → accounts_account_id_trading_crypto}/__init__.py +2 -2
  29. snaptrade_client/paths/{accounts_account_id_trading_simple → accounts_account_id_trading_crypto}/post.py +34 -34
  30. snaptrade_client/paths/{accounts_account_id_trading_simple → accounts_account_id_trading_crypto}/post.pyi +34 -34
  31. snaptrade_client/paths/{accounts_account_id_trading_simple_preview → accounts_account_id_trading_crypto_preview}/__init__.py +2 -2
  32. snaptrade_client/paths/{accounts_account_id_trading_simple_preview → accounts_account_id_trading_crypto_preview}/post.py +39 -39
  33. snaptrade_client/paths/{accounts_account_id_trading_simple_preview → accounts_account_id_trading_crypto_preview}/post.pyi +39 -39
  34. snaptrade_client/paths/{accounts_account_id_trading_simple_brokerage_order_id_replace → accounts_account_id_trading_replace}/__init__.py +2 -2
  35. snaptrade_client/paths/{accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py → accounts_account_id_trading_replace/post.py} +18 -28
  36. snaptrade_client/paths/{accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi → accounts_account_id_trading_replace/post.pyi} +18 -28
  37. snaptrade_client/paths/brokerages_brokerage_id_instruments/get.py +4 -4
  38. snaptrade_client/paths/brokerages_brokerage_id_instruments/get.pyi +4 -4
  39. snaptrade_client/type/crypto_order_form.py +50 -0
  40. snaptrade_client/type/{simple_order_preview.py → crypto_order_preview.py} +5 -5
  41. snaptrade_client/type/{simple_order_preview_estimated_fee.py → crypto_order_preview_estimated_fee.py} +3 -3
  42. snaptrade_client/type/crypto_trading_instrument.py +30 -0
  43. snaptrade_client/type/manual_trade_replace_form.py +3 -0
  44. {snaptrade_python_sdk-11.0.117.dist-info → snaptrade_python_sdk-11.0.119.dist-info}/METADATA +107 -105
  45. {snaptrade_python_sdk-11.0.117.dist-info → snaptrade_python_sdk-11.0.119.dist-info}/RECORD +47 -41
  46. snaptrade_client/apis/paths/accounts_account_id_trading_simple.py +0 -7
  47. snaptrade_client/apis/paths/accounts_account_id_trading_simple_brokerage_order_id_replace.py +0 -7
  48. snaptrade_client/apis/paths/accounts_account_id_trading_simple_preview.py +0 -7
  49. {snaptrade_python_sdk-11.0.117.dist-info → snaptrade_python_sdk-11.0.119.dist-info}/LICENSE +0 -0
  50. {snaptrade_python_sdk-11.0.117.dist-info → snaptrade_python_sdk-11.0.119.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: snaptrade-python-sdk
3
- Version: 11.0.117
3
+ Version: 11.0.119
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
- [![PyPI](https://img.shields.io/badge/PyPI-v11.0.117-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.117)
33
+ [![PyPI](https://img.shields.io/badge/PyPI-v11.0.119-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.119)
34
34
  [![README.md](https://img.shields.io/badge/README-Click%20Here-green)](https://github.com/passiv/snaptrade-sdks/tree/master/sdks/python#readme)
35
35
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
36
36
 
@@ -92,11 +92,11 @@ Connect brokerage accounts to your app for live positions and trading
92
92
  * [`snaptrade.trading.get_order_impact`](#snaptradetradingget_order_impact)
93
93
  * [`snaptrade.trading.get_user_account_quotes`](#snaptradetradingget_user_account_quotes)
94
94
  * [`snaptrade.trading.place_bracket_order`](#snaptradetradingplace_bracket_order)
95
+ * [`snaptrade.trading.place_crypto_order`](#snaptradetradingplace_crypto_order)
95
96
  * [`snaptrade.trading.place_force_order`](#snaptradetradingplace_force_order)
96
97
  * [`snaptrade.trading.place_mleg_order`](#snaptradetradingplace_mleg_order)
97
98
  * [`snaptrade.trading.place_order`](#snaptradetradingplace_order)
98
- * [`snaptrade.trading.place_simple_order`](#snaptradetradingplace_simple_order)
99
- * [`snaptrade.trading.preview_simple_order`](#snaptradetradingpreview_simple_order)
99
+ * [`snaptrade.trading.preview_crypto_order`](#snaptradetradingpreview_crypto_order)
100
100
  * [`snaptrade.trading.replace_order`](#snaptradetradingreplace_order)
101
101
  * [`snaptrade.trading.search_cryptocurrency_pair_instruments`](#snaptradetradingsearch_cryptocurrency_pair_instruments)
102
102
  * [`snaptrade.transactions_and_reporting.get_activities`](#snaptradetransactions_and_reportingget_activities)
@@ -111,7 +111,7 @@ Python >=3.8
111
111
  ## Installation<a id="installation"></a>
112
112
 
113
113
  ```sh
114
- pip install snaptrade-python-sdk==11.0.117
114
+ pip install snaptrade-python-sdk==11.0.119
115
115
  ```
116
116
 
117
117
  ## Getting Started<a id="getting-started"></a>
@@ -1568,7 +1568,7 @@ Comma separated value of brokerage slugs
1568
1568
 
1569
1569
  ### `snaptrade.reference_data.list_all_brokerage_instruments`<a id="snaptradereference_datalist_all_brokerage_instruments"></a>
1570
1570
 
1571
- Returns a list of all brokerage instruments available for a given brokerage, optionally filtered by a search. Not all brokerages support this. The ones that don't will return an empty list.
1571
+ Returns a list of all brokerage instruments available for a given brokerage. Not all brokerages support this. The ones that don't will return an empty list.
1572
1572
 
1573
1573
  #### 🛠️ Usage<a id="🛠️-usage"></a>
1574
1574
 
@@ -1713,7 +1713,7 @@ The search query for symbols.
1713
1713
 
1714
1714
  ### `snaptrade.trading.cancel_order`<a id="snaptradetradingcancel_order"></a>
1715
1715
 
1716
- Cancels an order in the specified account.
1716
+ Cancels an order in the specified account. Accepts order IDs for all asset types.
1717
1717
 
1718
1718
 
1719
1719
  #### 🛠️ Usage<a id="🛠️-usage"></a>
@@ -1755,7 +1755,9 @@ Order ID returned by brokerage. This is the unique identifier for the order in t
1755
1755
  ---
1756
1756
 
1757
1757
  ### `snaptrade.trading.cancel_user_account_order`<a id="snaptradetradingcancel_user_account_order"></a>
1758
+ ![Deprecated](https://img.shields.io/badge/deprecated-yellow)
1758
1759
 
1760
+ **This endpoint is deprecated. Please switch to [the new cancel order endpoint](/reference/Trading/Trading_cancelOrder) **
1759
1761
  Attempts to cancel an open order with the brokerage. If the order is no longer cancellable, the request will be rejected.
1760
1762
 
1761
1763
 
@@ -2040,6 +2042,90 @@ Number of shares for the order. This can be a decimal for fractional orders. Mus
2040
2042
 
2041
2043
  ---
2042
2044
 
2045
+ ### `snaptrade.trading.place_crypto_order`<a id="snaptradetradingplace_crypto_order"></a>
2046
+
2047
+ Places an order in the specified account.
2048
+ This endpoint does not compute the impact to the account balance from the order before submitting the order.
2049
+
2050
+
2051
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
2052
+
2053
+ ```python
2054
+ place_crypto_order_response = snaptrade.trading.place_crypto_order(
2055
+ instrument={
2056
+ "symbol": "BTC",
2057
+ "type": "CRYPTOCURRENCY",
2058
+ },
2059
+ side="BUY",
2060
+ type="MARKET",
2061
+ time_in_force="GTC",
2062
+ amount="123.45",
2063
+ user_id="snaptrade-user-123",
2064
+ user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
2065
+ account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
2066
+ limit_price="123.45",
2067
+ stop_price="123.45",
2068
+ post_only=False,
2069
+ expiration_date="2024-01-01T00:00:00Z",
2070
+ )
2071
+ ```
2072
+
2073
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
2074
+
2075
+ ##### instrument: [`CryptoTradingInstrument`](./snaptrade_client/type/crypto_trading_instrument.py)<a id="instrument-cryptotradinginstrumentsnaptrade_clienttypecrypto_trading_instrumentpy"></a>
2076
+
2077
+
2078
+ ##### side: [`ActionStrict`](./snaptrade_client/type/action_strict.py)<a id="side-actionstrictsnaptrade_clienttypeaction_strictpy"></a>
2079
+
2080
+ ##### type: `str`<a id="type-str"></a>
2081
+
2082
+ The type of order to place.
2083
+
2084
+ ##### time_in_force: `str`<a id="time_in_force-str"></a>
2085
+
2086
+ The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
2087
+
2088
+ ##### amount: `str`<a id="amount-str"></a>
2089
+
2090
+ The amount of the base currency to buy or sell.
2091
+
2092
+ ##### user_id: `str`<a id="user_id-str"></a>
2093
+
2094
+ ##### user_secret: `str`<a id="user_secret-str"></a>
2095
+
2096
+ ##### account_id: `str`<a id="account_id-str"></a>
2097
+
2098
+ ##### limit_price: `str`<a id="limit_price-str"></a>
2099
+
2100
+ The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
2101
+
2102
+ ##### stop_price: `str`<a id="stop_price-str"></a>
2103
+
2104
+ The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
2105
+
2106
+ ##### post_only: `bool`<a id="post_only-bool"></a>
2107
+
2108
+ Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
2109
+
2110
+ ##### expiration_date: `datetime`<a id="expiration_date-datetime"></a>
2111
+
2112
+ The expiration date of the order. Required if the time_in_force is GTD.
2113
+
2114
+ #### ⚙️ Request Body<a id="⚙️-request-body"></a>
2115
+
2116
+ [`CryptoOrderForm`](./snaptrade_client/type/crypto_order_form.py)
2117
+ #### 🔄 Return<a id="🔄-return"></a>
2118
+
2119
+ [`OrderUpdatedResponse`](./snaptrade_client/type/order_updated_response.py)
2120
+
2121
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
2122
+
2123
+ `/accounts/{accountId}/trading/crypto` `post`
2124
+
2125
+ [🔙 **Back to Table of Contents**](#table-of-contents)
2126
+
2127
+ ---
2128
+
2043
2129
  ### `snaptrade.trading.place_force_order`<a id="snaptradetradingplace_force_order"></a>
2044
2130
 
2045
2131
  Places a brokerage order in the specified account. The order could be rejected by the brokerage if it is invalid or if the account does not have sufficient funds.
@@ -2237,91 +2323,7 @@ Optional, defaults to true. Determines if a wait is performed to check on order
2237
2323
 
2238
2324
  ---
2239
2325
 
2240
- ### `snaptrade.trading.place_simple_order`<a id="snaptradetradingplace_simple_order"></a>
2241
-
2242
- Places an order in the specified account.
2243
- This endpoint does not compute the impact to the account balance from the order before submitting the order.
2244
-
2245
-
2246
- #### 🛠️ Usage<a id="🛠️-usage"></a>
2247
-
2248
- ```python
2249
- place_simple_order_response = snaptrade.trading.place_simple_order(
2250
- instrument={
2251
- "symbol": "AAPL",
2252
- "type": "EQUITY",
2253
- },
2254
- side="BUY",
2255
- type="MARKET",
2256
- time_in_force="GTC",
2257
- amount="123.45",
2258
- user_id="snaptrade-user-123",
2259
- user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
2260
- account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
2261
- limit_price="123.45",
2262
- stop_price="123.45",
2263
- post_only=False,
2264
- expiration_date="2024-01-01T00:00:00Z",
2265
- )
2266
- ```
2267
-
2268
- #### ⚙️ Parameters<a id="⚙️-parameters"></a>
2269
-
2270
- ##### instrument: [`TradingInstrument`](./snaptrade_client/type/trading_instrument.py)<a id="instrument-tradinginstrumentsnaptrade_clienttypetrading_instrumentpy"></a>
2271
-
2272
-
2273
- ##### side: [`ActionStrict`](./snaptrade_client/type/action_strict.py)<a id="side-actionstrictsnaptrade_clienttypeaction_strictpy"></a>
2274
-
2275
- ##### type: `str`<a id="type-str"></a>
2276
-
2277
- The type of order to place.
2278
-
2279
- ##### time_in_force: `str`<a id="time_in_force-str"></a>
2280
-
2281
- The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
2282
-
2283
- ##### amount: `str`<a id="amount-str"></a>
2284
-
2285
- The amount of the base currency to buy or sell.
2286
-
2287
- ##### user_id: `str`<a id="user_id-str"></a>
2288
-
2289
- ##### user_secret: `str`<a id="user_secret-str"></a>
2290
-
2291
- ##### account_id: `str`<a id="account_id-str"></a>
2292
-
2293
- ##### limit_price: `str`<a id="limit_price-str"></a>
2294
-
2295
- The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
2296
-
2297
- ##### stop_price: `str`<a id="stop_price-str"></a>
2298
-
2299
- The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
2300
-
2301
- ##### post_only: `bool`<a id="post_only-bool"></a>
2302
-
2303
- Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
2304
-
2305
- ##### expiration_date: `datetime`<a id="expiration_date-datetime"></a>
2306
-
2307
- The expiration date of the order. Required if the time_in_force is GTD.
2308
-
2309
- #### ⚙️ Request Body<a id="⚙️-request-body"></a>
2310
-
2311
- [`SimpleOrderForm`](./snaptrade_client/type/simple_order_form.py)
2312
- #### 🔄 Return<a id="🔄-return"></a>
2313
-
2314
- [`OrderUpdatedResponse`](./snaptrade_client/type/order_updated_response.py)
2315
-
2316
- #### 🌐 Endpoint<a id="🌐-endpoint"></a>
2317
-
2318
- `/accounts/{accountId}/trading/simple` `post`
2319
-
2320
- [🔙 **Back to Table of Contents**](#table-of-contents)
2321
-
2322
- ---
2323
-
2324
- ### `snaptrade.trading.preview_simple_order`<a id="snaptradetradingpreview_simple_order"></a>
2326
+ ### `snaptrade.trading.preview_crypto_order`<a id="snaptradetradingpreview_crypto_order"></a>
2325
2327
 
2326
2328
  Previews an order using the specified account.
2327
2329
 
@@ -2329,10 +2331,10 @@ Previews an order using the specified account.
2329
2331
  #### 🛠️ Usage<a id="🛠️-usage"></a>
2330
2332
 
2331
2333
  ```python
2332
- preview_simple_order_response = snaptrade.trading.preview_simple_order(
2334
+ preview_crypto_order_response = snaptrade.trading.preview_crypto_order(
2333
2335
  instrument={
2334
- "symbol": "AAPL",
2335
- "type": "EQUITY",
2336
+ "symbol": "BTC",
2337
+ "type": "CRYPTOCURRENCY",
2336
2338
  },
2337
2339
  side="BUY",
2338
2340
  type="MARKET",
@@ -2350,7 +2352,7 @@ preview_simple_order_response = snaptrade.trading.preview_simple_order(
2350
2352
 
2351
2353
  #### ⚙️ Parameters<a id="⚙️-parameters"></a>
2352
2354
 
2353
- ##### instrument: [`TradingInstrument`](./snaptrade_client/type/trading_instrument.py)<a id="instrument-tradinginstrumentsnaptrade_clienttypetrading_instrumentpy"></a>
2355
+ ##### instrument: [`CryptoTradingInstrument`](./snaptrade_client/type/crypto_trading_instrument.py)<a id="instrument-cryptotradinginstrumentsnaptrade_clienttypecrypto_trading_instrumentpy"></a>
2354
2356
 
2355
2357
 
2356
2358
  ##### side: [`ActionStrict`](./snaptrade_client/type/action_strict.py)<a id="side-actionstrictsnaptrade_clienttypeaction_strictpy"></a>
@@ -2391,14 +2393,14 @@ The expiration date of the order. Required if the time_in_force is GTD.
2391
2393
 
2392
2394
  #### ⚙️ Request Body<a id="⚙️-request-body"></a>
2393
2395
 
2394
- [`SimpleOrderForm`](./snaptrade_client/type/simple_order_form.py)
2396
+ [`CryptoOrderForm`](./snaptrade_client/type/crypto_order_form.py)
2395
2397
  #### 🔄 Return<a id="🔄-return"></a>
2396
2398
 
2397
- [`SimpleOrderPreview`](./snaptrade_client/type/simple_order_preview.py)
2399
+ [`CryptoOrderPreview`](./snaptrade_client/type/crypto_order_preview.py)
2398
2400
 
2399
2401
  #### 🌐 Endpoint<a id="🌐-endpoint"></a>
2400
2402
 
2401
- `/accounts/{accountId}/trading/simple/preview` `post`
2403
+ `/accounts/{accountId}/trading/crypto/preview` `post`
2402
2404
 
2403
2405
  [🔙 **Back to Table of Contents**](#table-of-contents)
2404
2406
 
@@ -2415,11 +2417,11 @@ returned in the response going forward. Only supported on some brokerages
2415
2417
 
2416
2418
  ```python
2417
2419
  replace_order_response = snaptrade.trading.replace_order(
2420
+ brokerage_order_id="66a033fa-da74-4fcf-b527-feefdec9257e",
2418
2421
  action="BUY",
2419
2422
  order_type="Market",
2420
2423
  time_in_force="Day",
2421
2424
  account_id="2bcd7cc3-e922-4976-bce1-9858296801c3",
2422
- brokerage_order_id="66a033fa-da74-4fcf-b527-feefdec9257e",
2423
2425
  user_id="snaptrade-user-123",
2424
2426
  user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
2425
2427
  price=31.33,
@@ -2431,6 +2433,10 @@ replace_order_response = snaptrade.trading.replace_order(
2431
2433
 
2432
2434
  #### ⚙️ Parameters<a id="⚙️-parameters"></a>
2433
2435
 
2436
+ ##### brokerage_order_id: `str`<a id="brokerage_order_id-str"></a>
2437
+
2438
+ Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
2439
+
2434
2440
  ##### action: [`ActionStrict`](./snaptrade_client/type/action_strict.py)<a id="action-actionstrictsnaptrade_clienttypeaction_strictpy"></a>
2435
2441
 
2436
2442
  ##### order_type: [`OrderTypeStrict`](./snaptrade_client/type/order_type_strict.py)<a id="order_type-ordertypestrictsnaptrade_clienttypeorder_type_strictpy"></a>
@@ -2441,10 +2447,6 @@ replace_order_response = snaptrade.trading.replace_order(
2441
2447
 
2442
2448
  The ID of the account to execute the trade on.
2443
2449
 
2444
- ##### brokerage_order_id: `str`<a id="brokerage_order_id-str"></a>
2445
-
2446
- The Brokerage Order ID of the order to replace.
2447
-
2448
2450
  ##### user_id: `str`<a id="user_id-str"></a>
2449
2451
 
2450
2452
  ##### user_secret: `str`<a id="user_secret-str"></a>
@@ -2472,7 +2474,7 @@ The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
2472
2474
 
2473
2475
  #### 🌐 Endpoint<a id="🌐-endpoint"></a>
2474
2476
 
2475
- `/accounts/{accountId}/trading/simple/{brokerageOrderId}/replace` `patch`
2477
+ `/accounts/{accountId}/trading/replace` `post`
2476
2478
 
2477
2479
  [🔙 **Back to Table of Contents**](#table-of-contents)
2478
2480
 
@@ -1,8 +1,8 @@
1
- snaptrade_client/__init__.py,sha256=NHeXdmKM-PmP26m6lyHzoNjtk4Wfo-yeiffdGKPFeF8,820
2
- snaptrade_client/api_client.py,sha256=6ndZ0ioXto44VDm_rTn9WqwQWqXKBa5JPVvQaciz37w,73975
1
+ snaptrade_client/__init__.py,sha256=-zsHBdXu0830r8BKevqVC2M2zbCcUv5GTCkMvQp2TWs,820
2
+ snaptrade_client/api_client.py,sha256=xUc6Cm8qMqGRQ2CBmOvpfUrnJLCkwBjtn3wQlRRfp4Y,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
- snaptrade_client/apis/path_to_api.py,sha256=SLpwK1E1PS-eT3afsaLab3u8QJLq3zHBN8ccXt0JD30,13334
5
+ snaptrade_client/apis/path_to_api.py,sha256=yF0dIHYU6XwwymJxpYf6XByZudIICIeiPSwjHSPrWd8,13190
6
6
  snaptrade_client/apis/paths/__init__.py,sha256=oIb-tz_ei5m0RWOOB0qXTkBKu61nYtwOUlWvQbD5gFE,243
7
7
  snaptrade_client/apis/paths/accounts.py,sha256=aHSwrwNqPSa2ikmR-WP0dg2LbRBSNBB3n3_2OTCcxs4,103
8
8
  snaptrade_client/apis/paths/accounts_account_id.py,sha256=Xv0hHwov50tVcdtqCS-Np0BmqMhUwrvjIQLaa9yPF3U,207
@@ -23,12 +23,12 @@ snaptrade_client/apis/paths/accounts_account_id_return_rates.py,sha256=2SjRXGvVA
23
23
  snaptrade_client/apis/paths/accounts_account_id_symbols.py,sha256=_ol99FPuyBGqr7jPZt6ktaWOE3rB73271UX2D51mVFY,141
24
24
  snaptrade_client/apis/paths/accounts_account_id_trading_bracket.py,sha256=YmDB1r26n-xXHkwsAmj0zyPqJQPk3PD3Us2gXFd4OkA,156
25
25
  snaptrade_client/apis/paths/accounts_account_id_trading_cancel.py,sha256=XJvYaGRuPQEnexj79YCskbeozmEF2Kd4qYE-uUw2RE8,154
26
+ snaptrade_client/apis/paths/accounts_account_id_trading_crypto.py,sha256=EFOveHpoj_CYWPHd--zp_JJN-46j6Ea0Kuf2D2FxB_0,154
27
+ snaptrade_client/apis/paths/accounts_account_id_trading_crypto_preview.py,sha256=BMIm6juFEIGjAnf2UMffEhwfMBfD5Dhjv2j45Gj_8wg,169
26
28
  snaptrade_client/apis/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs.py,sha256=VVJ_dD2oK6B5yDjj-Gxj-S-4Jy1DgY1LibjVOUdkpi4,201
27
29
  snaptrade_client/apis/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote.py,sha256=zVl0Ns3WGScqm1VoAiAY3Q4wG8qrMJ4HCokZ4Taf-_g,246
28
30
  snaptrade_client/apis/paths/accounts_account_id_trading_options.py,sha256=rQch8UQAl-m1gxdF3xozFQ13xBu0lodLrodh7QUZF3I,156
29
- snaptrade_client/apis/paths/accounts_account_id_trading_simple.py,sha256=0JM3K6nfRzrEsTVtHghFOMqNv_d1aA2hFiyoLJMtOac,154
30
- snaptrade_client/apis/paths/accounts_account_id_trading_simple_brokerage_order_id_replace.py,sha256=CbVr-zainmw6atTQZ4TuHHrzIkElbghWeYOkz25zQxs,207
31
- snaptrade_client/apis/paths/accounts_account_id_trading_simple_preview.py,sha256=vd7NzddZovkqMKU88e9FklbzhVDLN3-8Y0uMgQhgtTY,169
31
+ snaptrade_client/apis/paths/accounts_account_id_trading_replace.py,sha256=W32BuUEx6sJnD6_c4nHbmHq5FaiquWflMQ3PzNm-nQI,156
32
32
  snaptrade_client/apis/paths/activities.py,sha256=wnt8PsbaSdDKJAX5uUjwpxtb10yHb8PsTYMVtnNA-ts,107
33
33
  snaptrade_client/apis/paths/authorizations.py,sha256=H06_FnobYYLslYAZJ858iFZbNSVJkpMfRg7bsM3fw4c,115
34
34
  snaptrade_client/apis/paths/authorizations_authorization_id.py,sha256=498eWO9ekS_opdxQKmEBtewZAALBevAqfu0UE5mn9lE,252
@@ -73,13 +73,13 @@ snaptrade_client/apis/tags/options_api_generated.py,sha256=NehERRdEJhPpg2Q2XaHZc
73
73
  snaptrade_client/apis/tags/reference_data_api.py,sha256=DdmRsoiG7nLk8EgXWT1KvurcQnPYAlr1Dz0kdpdWGRQ,172
74
74
  snaptrade_client/apis/tags/reference_data_api_generated.py,sha256=F5uv2WsIYX7z8P86b8W8gjMjJU46L6GWs6WFJjKW17Y,1635
75
75
  snaptrade_client/apis/tags/trading_api.py,sha256=J0L9w7V4uoH3_fkvmJhpVQTIUQCACBgrb_QQ7VTILqI,147
76
- snaptrade_client/apis/tags/trading_api_generated.py,sha256=WieXJ5Eii7-4yu81f_bdu8j_7lJQ96LQIMwzF2rXL9w,1925
76
+ snaptrade_client/apis/tags/trading_api_generated.py,sha256=dbNWUjGnGVNg_ZFEPI0yw7EF4_DjonpEjhjBU5lsfQc,1898
77
77
  snaptrade_client/apis/tags/transactions_and_reporting_api.py,sha256=4qC3MPU73Cj2ePSxD_GIjrvvxLbjEEsan2VcDqVZXd4,217
78
78
  snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw43o6-dzwGDnD5hPtc5Vz2f7EdM-yFw8FQkLI5suak,573
79
79
  snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
80
80
  snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
81
81
  snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
82
- snaptrade_client/configuration.py,sha256=o7t8W3vtbpC6QTu9X9-DWbq1-Gaauwg66n33Q3x_RF0,19262
82
+ snaptrade_client/configuration.py,sha256=xChLAgWSP6MHIHMTkcnQiXr-tSeu1EiYdQBU4xWewBA,19262
83
83
  snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
84
84
  snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
85
85
  snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
@@ -159,6 +159,14 @@ snaptrade_client/model/child_brokerage_order_ids_nullable.py,sha256=fkUaBL2_pxDU
159
159
  snaptrade_client/model/child_brokerage_order_ids_nullable.pyi,sha256=fkUaBL2_pxDUX7FzKtzycfcViQFF2lo6BoesBz-JJwA,3456
160
160
  snaptrade_client/model/client_id.py,sha256=X_35xf3THj65IXqmrqTWuTWQcJLMKq17kDJnjoWxDTY,598
161
161
  snaptrade_client/model/client_id.pyi,sha256=X_35xf3THj65IXqmrqTWuTWQcJLMKq17kDJnjoWxDTY,598
162
+ snaptrade_client/model/crypto_order_form.py,sha256=8MqjlQ4wgXq0A4hi13YDqc_QyhQXAf36fJt6Ahgw_ms,9383
163
+ snaptrade_client/model/crypto_order_form.pyi,sha256=ffCaywXEjQnrF4llbGPw2Yhnf3zdKMy5HzwdpJUsvTM,8639
164
+ snaptrade_client/model/crypto_order_preview.py,sha256=F0i94DnO1rDH52vwXaz_gMlYBL2FgAjtzuVKhZ_wbaM,2791
165
+ snaptrade_client/model/crypto_order_preview.pyi,sha256=F0i94DnO1rDH52vwXaz_gMlYBL2FgAjtzuVKhZ_wbaM,2791
166
+ snaptrade_client/model/crypto_order_preview_estimated_fee.py,sha256=aK-85l65SLSq722Dc_E-KCm6yG_wxYm0gyBylpMboEY,3142
167
+ snaptrade_client/model/crypto_order_preview_estimated_fee.pyi,sha256=aK-85l65SLSq722Dc_E-KCm6yG_wxYm0gyBylpMboEY,3142
168
+ snaptrade_client/model/crypto_trading_instrument.py,sha256=U87R7vwtmRvhIcaT_0phD8vAxHQKEOFjcxCHTVwjo1E,3685
169
+ snaptrade_client/model/crypto_trading_instrument.pyi,sha256=MUwXwNl7C7Lm79sJtQXxsFBeLw7rC2K8tmpW0VLL-yk,3432
162
170
  snaptrade_client/model/cryptocurrency_base_symbol.py,sha256=TopWpvjdmfDsUor1LG6HqvYkE9ilSdBgDEjOFVMH0xU,614
163
171
  snaptrade_client/model/cryptocurrency_base_symbol.pyi,sha256=TopWpvjdmfDsUor1LG6HqvYkE9ilSdBgDEjOFVMH0xU,614
164
172
  snaptrade_client/model/cryptocurrency_pair.py,sha256=p-QqydO3xxuupngr1cw7IXDV2tlzcHwfPRncazI4Q9M,3606
@@ -219,8 +227,8 @@ snaptrade_client/model/manual_trade_form_with_options.py,sha256=PPUYUyvgIcQO4YPF
219
227
  snaptrade_client/model/manual_trade_form_with_options.pyi,sha256=PPUYUyvgIcQO4YPFYZivqV49jVj1w3BA71w11jJhU24,11960
220
228
  snaptrade_client/model/manual_trade_impact.py,sha256=zgr_9AHr8spkoYHncJB_V0axP-eNLfHXWQ_arZOfbQw,7078
221
229
  snaptrade_client/model/manual_trade_impact.pyi,sha256=zgr_9AHr8spkoYHncJB_V0axP-eNLfHXWQ_arZOfbQw,7078
222
- snaptrade_client/model/manual_trade_replace_form.py,sha256=KKNQAA0pj-LNIgtxd7BRlOMjRdHWDjkwbP6UyPEJi24,7311
223
- snaptrade_client/model/manual_trade_replace_form.pyi,sha256=KKNQAA0pj-LNIgtxd7BRlOMjRdHWDjkwbP6UyPEJi24,7311
230
+ snaptrade_client/model/manual_trade_replace_form.py,sha256=g-jikLdUd96NquVYpbezmBr5KDRGvxnWDRlpL4tUxiE,8013
231
+ snaptrade_client/model/manual_trade_replace_form.pyi,sha256=g-jikLdUd96NquVYpbezmBr5KDRGvxnWDRlpL4tUxiE,8013
224
232
  snaptrade_client/model/manual_trade_symbol.py,sha256=0QCVRFq342s0wHe_9_xT_Sm2k97khZ_8rKz4hmFwaj8,6458
225
233
  snaptrade_client/model/manual_trade_symbol.pyi,sha256=0QCVRFq342s0wHe_9_xT_Sm2k97khZ_8rKz4hmFwaj8,6458
226
234
  snaptrade_client/model/mleg_action_strict.py,sha256=MUQnRyRj8PcZyYPzC4VVHcc7m8_qSRmoIKJiPY92_Rk,1745
@@ -339,12 +347,8 @@ snaptrade_client/model/security_type_id.py,sha256=itS4FIO8Lk45OY2Kfbd9CIPjAI3-3h
339
347
  snaptrade_client/model/security_type_id.pyi,sha256=itS4FIO8Lk45OY2Kfbd9CIPjAI3-3heFosnDJp9Tg38,605
340
348
  snaptrade_client/model/session_event.py,sha256=N69vDG_nBIitVAzo2SLOss6Vf5AcBrZkcJsnKAJE2r8,10852
341
349
  snaptrade_client/model/session_event.pyi,sha256=4OE629GZE3pRrjsLnPp7GHYGyFpQwPpoKPftvgn0zYE,9651
342
- snaptrade_client/model/simple_order_form.py,sha256=1JO0shAk1vT3Pu24ZEv3BiiJzmTTYMYfZMGWyLnn7Hs,9334
343
- snaptrade_client/model/simple_order_form.pyi,sha256=-bNBOWAnRo_ydJElrULnunCKqn3QzxSiVW9c4wxGtng,8590
344
- snaptrade_client/model/simple_order_preview.py,sha256=TDK6UGmNYw34aqpr9Rd6OMC_n0BxzMP1VMca-CpxYIg,2791
345
- snaptrade_client/model/simple_order_preview.pyi,sha256=TDK6UGmNYw34aqpr9Rd6OMC_n0BxzMP1VMca-CpxYIg,2791
346
- snaptrade_client/model/simple_order_preview_estimated_fee.py,sha256=oppNxJXK72rTDKt-_AGJpwNZd79hrerm7gcbyk_8vTo,3142
347
- snaptrade_client/model/simple_order_preview_estimated_fee.pyi,sha256=oppNxJXK72rTDKt-_AGJpwNZd79hrerm7gcbyk_8vTo,3142
350
+ snaptrade_client/model/simple_order_form.py,sha256=Xqx97PFD6fQR2vP8-LFg5d5bIdl8hBkW_qGtyBQVbzo,9865
351
+ snaptrade_client/model/simple_order_form.pyi,sha256=oM7M5TDyu27gonYbqT-BJ5dvdSfB9erBl1s3l9qoHlE,9121
348
352
  snaptrade_client/model/snap_trade_holdings_account.py,sha256=2nrG1AB7pYFsh4fgPeMYja3g_zzmPW3cV8sWDxerU1c,7960
349
353
  snaptrade_client/model/snap_trade_holdings_account.pyi,sha256=2nrG1AB7pYFsh4fgPeMYja3g_zzmPW3cV8sWDxerU1c,7960
350
354
  snaptrade_client/model/snap_trade_holdings_account_meta.py,sha256=a7gTJqkuclua7LrqJsRo7QtvFwszTuh7QQyc-Ny2NfM,1668
@@ -419,9 +423,9 @@ snaptrade_client/model/user_secret.py,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9
419
423
  snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9cmz9vBMc,600
420
424
  snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
421
425
  snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
422
- snaptrade_client/models/__init__.py,sha256=YB78T-G1HtVQguwlOz9UWTGhYNqzU4TU6IkG56CDMhE,13158
423
- snaptrade_client/operation_parameter_map.py,sha256=A0nDCqWYriqmEQUk4izudEgjT0vl6kUzc-WfTqAMxhQ,19364
424
- snaptrade_client/paths/__init__.py,sha256=2gpaylH3fPI4vPKxn-bEW7HlmHYnMM1w4aM4TXDMs-8,3841
426
+ snaptrade_client/models/__init__.py,sha256=nEO5bHCM19h-AQp0rl6XNHrTZ4Aw4ffqVOPRYOPOr_I,13312
427
+ snaptrade_client/operation_parameter_map.py,sha256=xHRI_s-1z4I7jbPy5zLYHZSlOiw2eYs1xVEb61juiGw,19339
428
+ snaptrade_client/paths/__init__.py,sha256=zKoCvneGnOP8CWSKm7V9H0d2FqfYXKGio7iPU5ybbzc,3789
425
429
  snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
426
430
  snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
427
431
  snaptrade_client/paths/accounts/get.pyi,sha256=gna7qIU-95WqOFl6qTsP18ZY7SKi9CYEBAbARPAPPF4,16261
@@ -458,8 +462,8 @@ snaptrade_client/paths/accounts_account_id_orders/__init__.py,sha256=zHuTi8F_iUe
458
462
  snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=G995P3DYTYjlbOmqO1iyJSPjtO6KmFUOfGCBaozjeUU,21877
459
463
  snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=N23jjsdpQiilZqFXOF5Gj31PLdOXqEpKytqUwiB_AiI,21462
460
464
  snaptrade_client/paths/accounts_account_id_orders_cancel/__init__.py,sha256=UIeHlsXhxZyqf4ADkLxYxJUH6ChCcSkpeML1XWjxGdI,357
461
- snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=yezwLdueIcuRvUpKWLSGDho96NKV_2Z4ymwIeYz6ltE,24085
462
- snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=JlyQ_cpJ5Xz37VacvWEBe0FXzfaxU1KBDd4KAMHoljs,23861
465
+ snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=PipHEDsFEytBeeXn5ydOnD5bCTHcDfW5EWmaRuuWQyQ,24559
466
+ snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=r1JJmy3TEKzeu7WAXPGP5RocDF6dDwFScC_-ffesP9E,24335
463
467
  snaptrade_client/paths/accounts_account_id_positions/__init__.py,sha256=UB-B0t2OnlP8QvI9ptBNhqYsywmYsFZz9G8NJkVZBTM,349
464
468
  snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=mT1qThSd9z8ggJa0uXGdWA_N8cs0NH_ijLRsPIVnuWY,20204
465
469
  snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=wHZruGOsjMfVd6GW3qB8jPhMQNfr2dP4TbB71taNUVk,20002
@@ -479,8 +483,14 @@ snaptrade_client/paths/accounts_account_id_trading_bracket/__init__.py,sha256=QB
479
483
  snaptrade_client/paths/accounts_account_id_trading_bracket/post.py,sha256=8ElBo2s3zq9UyL9vcQAkDoPXNejEYXVwojxFm2CDFRA,28445
480
484
  snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi,sha256=HxHl2SLumpgimMpKRrNo6gMsjjlPfWGvupp8PvqiiCk,28191
481
485
  snaptrade_client/paths/accounts_account_id_trading_cancel/__init__.py,sha256=MJxSaVr3G9c_q18MFEhXT13t8kAeMsXQvpmfukC4T-8,359
482
- snaptrade_client/paths/accounts_account_id_trading_cancel/post.py,sha256=TSODcUS71knCjX7hADFZNoVOcruuK_Oxh2R7TBsCBBc,23251
483
- snaptrade_client/paths/accounts_account_id_trading_cancel/post.pyi,sha256=qakR2J1q3gs7w6Hb-yRTUmvDiRTBmZCvfJvvAJlaST0,23027
486
+ snaptrade_client/paths/accounts_account_id_trading_cancel/post.py,sha256=yGMf_q9QL7kD3sGktudZTxj-F8pfcrlIUjZabTXxKEc,23329
487
+ snaptrade_client/paths/accounts_account_id_trading_cancel/post.pyi,sha256=DR6AVykAA-kV-wmbVq0ZpntqMyY4EO5vVdEjJKBRSBk,23105
488
+ snaptrade_client/paths/accounts_account_id_trading_crypto/__init__.py,sha256=IOixgqayXQ0USUNJUoULk_Bc0-ecDLauY8cg2nrpbpA,359
489
+ snaptrade_client/paths/accounts_account_id_trading_crypto/post.py,sha256=Bvz6NTV0HI6d9XpX8QBl2U9MjnNd-AP1UUJ6TAiE9_g,25931
490
+ snaptrade_client/paths/accounts_account_id_trading_crypto/post.pyi,sha256=YaWUa2mgFrAxp6HCAMoOkbkTCa5H0oys2tAO4mLmj5I,25707
491
+ snaptrade_client/paths/accounts_account_id_trading_crypto_preview/__init__.py,sha256=Kv9TAA7aH0NtvkzJyMuN4QVbpY-9g7xQIoPDKFT8Q9I,375
492
+ snaptrade_client/paths/accounts_account_id_trading_crypto_preview/post.py,sha256=XJb35ebFGsPbAOdpHxumYHPEydgGo75Thl6eoxTLFDg,25755
493
+ snaptrade_client/paths/accounts_account_id_trading_crypto_preview/post.pyi,sha256=f9zb64qhzAKFTYcx1JTQtr-6dYAAtjtG_o8-0LtJHdw,25531
484
494
  snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/__init__.py,sha256=lahXV_MX3G5PheZJIbVfyjWukvODtPfgcDvjEaw2OkI,411
485
495
  snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.py,sha256=fGE8EldxKTuR4eeAqJw2B8fKkKOIQ6hjxOeTUVErmVo,23272
486
496
  snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.pyi,sha256=bi6v_C2jqdetQuVd7zDN13KbAsOXtISvDRTPx9t-vnE,23048
@@ -490,15 +500,9 @@ snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pa
490
500
  snaptrade_client/paths/accounts_account_id_trading_options/__init__.py,sha256=W4DH_sVnEgWCOwhFuJ05O-L0iN0HNDQ3QmVhC4uTzxE,361
491
501
  snaptrade_client/paths/accounts_account_id_trading_options/post.py,sha256=LXlATF-SWj6cqOixY73JWNM0VGxCixdNBkswXRxiOfs,25355
492
502
  snaptrade_client/paths/accounts_account_id_trading_options/post.pyi,sha256=nUHg-X1j6Oa9ZZX54SIweTKEBmgh7vIiOs_rKkUG45A,25131
493
- snaptrade_client/paths/accounts_account_id_trading_simple/__init__.py,sha256=1kfuRO4L1XUyRnv-XbLhv5SrvJ4UqjzjKDfRR9EIu9Y,359
494
- snaptrade_client/paths/accounts_account_id_trading_simple/post.py,sha256=tDI-5-LFAMPGmwjayMH66YGyDp4K6V1teu-esNcbFYU,25869
495
- snaptrade_client/paths/accounts_account_id_trading_simple/post.pyi,sha256=xJVttopVQwLJq-yApP6ioXGK2CQtC7y8ummgcLxqKlU,25645
496
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/__init__.py,sha256=TL1dJxF1QEDBQVAYOCWuwb-vE21liUhT20nusDJnW14,413
497
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py,sha256=DRcB4aQvuZJYQh3h7sCN2rHN0el7LSnxJZspimYdvSw,27740
498
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi,sha256=693oA7dsRMLn-GF4pJEanfDa0PeFe1V-5lpl69zTc8s,27486
499
- snaptrade_client/paths/accounts_account_id_trading_simple_preview/__init__.py,sha256=e85yQ-g79CpD-OBNRqwmVKTYfuR_Dc9XmXqfZiJFJmg,375
500
- snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.py,sha256=j-ARrAo-nkNB1EEAzScNL8dII6oAu1m6sE-3KBAzx5k,25693
501
- snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.pyi,sha256=AQy3AuaWA2wqXhQKXm-4kFsGYKVHM9mXX0XRijN6sTU,25469
503
+ snaptrade_client/paths/accounts_account_id_trading_replace/__init__.py,sha256=k1IliXIhslkwLvlDi42TeVY-HkZ8VO-9vcTsYEIpcyc,361
504
+ snaptrade_client/paths/accounts_account_id_trading_replace/post.py,sha256=HnCFGQX6SgMYkADqBbw7KMSHdg0i9sIvG_3_1s7kp2s,27283
505
+ snaptrade_client/paths/accounts_account_id_trading_replace/post.pyi,sha256=Nx3hfc8CCt31U5I8IATHXnO-mZplBP0nJ6eTKv0ZjVc,27029
502
506
  snaptrade_client/paths/activities/__init__.py,sha256=eRdkddwyc4GOcQQd5YCIn3RK74b8xxVTCJ--uTCpDUo,311
503
507
  snaptrade_client/paths/activities/get.py,sha256=cuCHK_FPuIbYw9wI7MTCIYZnKKWE6sqZbEBXp74MzKE,21979
504
508
  snaptrade_client/paths/activities/get.pyi,sha256=_fc__LqtH6T-tEbPOdyn95NZKHDQ_EO_m-0xDzpugiE,21777
@@ -526,8 +530,8 @@ snaptrade_client/paths/brokerages/__init__.py,sha256=iSOrQi0W3HabeDgu9IRT-PYS_bY
526
530
  snaptrade_client/paths/brokerages/get.py,sha256=C9ygoXqROqHL58spj0nISr13o9mXMLUE6tmUiK6i-eQ,11862
527
531
  snaptrade_client/paths/brokerages/get.pyi,sha256=s3n13JswLTx30uVTItV8eUVDa0cpJSrcUOOQ8SSgOdo,11660
528
532
  snaptrade_client/paths/brokerages_brokerage_id_instruments/__init__.py,sha256=VWl2ZJ5JNeTtYHcavRnLjDKfQ7PsLTh7z1EyYzlhG44,361
529
- snaptrade_client/paths/brokerages_brokerage_id_instruments/get.py,sha256=eEixBH6X-Ip9L1KJ-MQmhP-h3FVsCZTK20ng0DI93sE,14901
530
- snaptrade_client/paths/brokerages_brokerage_id_instruments/get.pyi,sha256=I9iLp1s-kFEK4VHieHxoztMxrLFeJGwPlsUtNlwYR-c,14699
533
+ snaptrade_client/paths/brokerages_brokerage_id_instruments/get.py,sha256=zl3IhD7ERu0R5ERDw-FYiPBnf8VTF2iDZhHceWAnXps,14779
534
+ snaptrade_client/paths/brokerages_brokerage_id_instruments/get.pyi,sha256=2b4RaF0owgMO0Tj2wu3krAVGEE6YH7ju8bxWqzQUA4w,14577
531
535
  snaptrade_client/paths/currencies/__init__.py,sha256=E_ExjRD9lsd051A5rYxbZjMI8EuzoNNqca6NnHUmGGg,311
532
536
  snaptrade_client/paths/currencies/get.py,sha256=T6INxssyN58AqwmlhUy363i9YRezc-xVnoqWeRMgkco,11848
533
537
  snaptrade_client/paths/currencies/get.pyi,sha256=NeZH1if9QF_KPdhEME-vuJV-JTILX2CuG9wNSs9MXMA,11646
@@ -633,6 +637,10 @@ snaptrade_client/type/cancel_order_response_raw_response.py,sha256=3DylY07lqDipF
633
637
  snaptrade_client/type/child_brokerage_order_ids.py,sha256=knJxS5Hel2yzps4pkVGKTp0aEV4D2HSddUtgvsbu50Q,801
634
638
  snaptrade_client/type/child_brokerage_order_ids_nullable.py,sha256=-scm2hOxKhUa9WO80A8B8RCAqix7i_ycL-mCn5Xwvo4,841
635
639
  snaptrade_client/type/client_id.py,sha256=A6BK1LZ7eX6qzRNndvKcGlxkgRf3tbzIZ_0by6FWhjM,386
640
+ snaptrade_client/type/crypto_order_form.py,sha256=Y-7I-ryCYpDYfZxyEmt0YSL-3umzoThD707labNRHGI,2001
641
+ snaptrade_client/type/crypto_order_preview.py,sha256=cZ_LgtZlHCYiaL9nSSliV4SE0rFEfy6TFqAGsBVOSEw,726
642
+ snaptrade_client/type/crypto_order_preview_estimated_fee.py,sha256=pqHTKg-dIhH24BCnUY4fFdERJIcWJEGpD5OAXHntEqk,796
643
+ snaptrade_client/type/crypto_trading_instrument.py,sha256=D8dOWGdyqZAluHgYFfMtl3ru8jl3-2n1IKcNL7E5MYQ,705
636
644
  snaptrade_client/type/cryptocurrency_base_symbol.py,sha256=zKNL1cf3yes--pBAvvCu-C5IfXsk_eQDIzf8zSTNx1U,402
637
645
  snaptrade_client/type/cryptocurrency_pair.py,sha256=Ciqq-UnDpB1Zhs1o4hAVfQsYnSuDLOzlpS2uGqe5zZ4,919
638
646
  snaptrade_client/type/cryptocurrency_pair_quote.py,sha256=bwBv2jvYU6iQGZ13wv_X7EmWzKxnHvIeDv8PS1-_3Cw,825
@@ -663,7 +671,7 @@ snaptrade_client/type/manual_trade_form.py,sha256=VENobS352pltGcepu3Cg9uvMZcPZv7
663
671
  snaptrade_client/type/manual_trade_form_bracket.py,sha256=hB8F_NEX1IG23ChV7ddj3mDF_bbdGQGJOtitkgOyh-c,1670
664
672
  snaptrade_client/type/manual_trade_form_with_options.py,sha256=I0OSPSBTnMHu96kTMGZEKT6IuySzk5ZEY2s2AexEe04,2515
665
673
  snaptrade_client/type/manual_trade_impact.py,sha256=djvwCJI-RgLPnD3Mm88Vv6To66nnMiD-ZEcSNuxyH3o,1195
666
- snaptrade_client/type/manual_trade_replace_form.py,sha256=T6Tf09KqQHPsJE1EUlOBM59qWpSwBjNqIWZY8zFgb_M,1285
674
+ snaptrade_client/type/manual_trade_replace_form.py,sha256=vza-Uwr022gRIHIpUYNAoKOmtEg5k0LFMhXrinHDPko,1421
667
675
  snaptrade_client/type/manual_trade_symbol.py,sha256=0P6DXJhVNfk-lVEfkwb7t5lATDQdR1lYXlDkBQLhc0s,1461
668
676
  snaptrade_client/type/mleg_action_strict.py,sha256=w5F_1GGpHkXdT2nzPct5WlIO5Ba1AIybSE8xSH7jYyI,477
669
677
  snaptrade_client/type/mleg_instrument_type.py,sha256=9y76B7Qiq12B_zEfuRnnUbkzc6ev6snnR6kUyJtytAQ,420
@@ -724,8 +732,6 @@ snaptrade_client/type/security_type.py,sha256=NlUNIhUDWjoRIFZLcMBCFI7qwR7hsrz4lb
724
732
  snaptrade_client/type/security_type_id.py,sha256=c2BkaqwMg287XBn_Do0sBVdrmhiVNR0DTW7v1IuRemI,392
725
733
  snaptrade_client/type/session_event.py,sha256=36sG7xfqVY0xEgFXtI0jAaC85r9uBM18XfUYQnGYbwk,992
726
734
  snaptrade_client/type/simple_order_form.py,sha256=o8jhnyAQI_PDWAsgtXhwI-5lxnEJrFmfG2E2GmHjp1w,1982
727
- snaptrade_client/type/simple_order_preview.py,sha256=ot61HXuUH6D3pkGmPea09qUt8e9jkZG6PFvU8xtp_uU,726
728
- snaptrade_client/type/simple_order_preview_estimated_fee.py,sha256=PsEeY7JD9EpNCc1z7Azo2oEEuMCmJysgPT2ho1VLmBI,796
729
735
  snaptrade_client/type/snap_trade_holdings_account.py,sha256=2CELHwFK5R3S6IEdQR-0L4yz5MHlnXuX8-HFOgWTJ0U,1098
730
736
  snaptrade_client/type/snap_trade_holdings_account_meta.py,sha256=d8lARJi8F4ppNZzEkyoGVetlmLlp-cv8gxY7Qph1LmA,407
731
737
  snaptrade_client/type/snap_trade_holdings_total_value.py,sha256=tqQxn5TxkCYhZmCEtQc9uuLkKOyeXQKTNNMY23xQN3I,830
@@ -765,7 +771,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
765
771
  snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
766
772
  snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
767
773
  snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
768
- snaptrade_python_sdk-11.0.117.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
769
- snaptrade_python_sdk-11.0.117.dist-info/METADATA,sha256=-D3JQuwYbwji-hKxBi3mW_JDB3Xo4yCatChlQSm4diE,95951
770
- snaptrade_python_sdk-11.0.117.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
771
- snaptrade_python_sdk-11.0.117.dist-info/RECORD,,
774
+ snaptrade_python_sdk-11.0.119.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
775
+ snaptrade_python_sdk-11.0.119.dist-info/METADATA,sha256=IHJ17tIKPxDI4VBhzlw1ak0gpHyQJy0cJQitmfnuGRM,96234
776
+ snaptrade_python_sdk-11.0.119.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
777
+ snaptrade_python_sdk-11.0.119.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- from snaptrade_client.paths.accounts_account_id_trading_simple.post import ApiForpost
2
-
3
-
4
- class AccountsAccountIdTradingSimple(
5
- ApiForpost,
6
- ):
7
- pass
@@ -1,7 +0,0 @@
1
- from snaptrade_client.paths.accounts_account_id_trading_simple_brokerage_order_id_replace.patch import ApiForpatch
2
-
3
-
4
- class AccountsAccountIdTradingSimpleBrokerageOrderIdReplace(
5
- ApiForpatch,
6
- ):
7
- pass
@@ -1,7 +0,0 @@
1
- from snaptrade_client.paths.accounts_account_id_trading_simple_preview.post import ApiForpost
2
-
3
-
4
- class AccountsAccountIdTradingSimplePreview(
5
- ApiForpost,
6
- ):
7
- pass