wiz-trader 0.24.0__py3-none-any.whl → 0.25.0__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.
- wiz_trader/__init__.py +1 -1
- {wiz_trader-0.24.0.dist-info → wiz_trader-0.25.0.dist-info}/METADATA +18 -3
- {wiz_trader-0.24.0.dist-info → wiz_trader-0.25.0.dist-info}/RECORD +5 -5
- {wiz_trader-0.24.0.dist-info → wiz_trader-0.25.0.dist-info}/WHEEL +0 -0
- {wiz_trader-0.24.0.dist-info → wiz_trader-0.25.0.dist-info}/top_level.txt +0 -0
wiz_trader/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wiz_trader
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.25.0
|
4
4
|
Summary: A Python SDK for connecting to the Wizzer.
|
5
5
|
Home-page: https://bitbucket.org/wizzer-tech/quotes_sdk.git
|
6
6
|
Author: Pawan Wagh
|
@@ -227,12 +227,22 @@ def on_connect(ws):
|
|
227
227
|
|
228
228
|
### Unsubscribing from Instruments
|
229
229
|
|
230
|
-
|
230
|
+
Use the `unsubscribe` method to stop receiving real-time data for specific instruments. This helps manage bandwidth and reduces unnecessary data processing.
|
231
231
|
|
232
232
|
```python
|
233
|
+
# Unsubscribe from specific instruments
|
233
234
|
ws.unsubscribe(["NSE:SBIN:3045", "NSE:ICICIBANK:4963"])
|
235
|
+
|
236
|
+
# You can also unsubscribe from a single instrument
|
237
|
+
ws.unsubscribe(["NSE:RELIANCE:2885"])
|
234
238
|
```
|
235
239
|
|
240
|
+
**Key Features:**
|
241
|
+
- Immediately stops tick data for the specified instruments
|
242
|
+
- Reduces network bandwidth and processing overhead
|
243
|
+
- Can be called multiple times for different instrument sets
|
244
|
+
- No callback fired for unsubscribed instruments
|
245
|
+
|
236
246
|
### Complete Examples
|
237
247
|
|
238
248
|
#### Blocking Example
|
@@ -301,8 +311,13 @@ asyncio.run(main())
|
|
301
311
|
ts = tick timestamp
|
302
312
|
lastTradedTs = timestamp of the last executed trade in this instrument
|
303
313
|
|
314
|
+
**New Fields Added:**
|
315
|
+
- `oi`: Current open interest (for futures and options)
|
316
|
+
- `oiDayHigh`: Day's highest open interest value
|
317
|
+
- `oiDayLow`: Day's lowest open interest value
|
318
|
+
|
304
319
|
```
|
305
|
-
{'identifier': 'NSE:RELIANCE:2885', 'tradingSymbol': 'RELIANCE', 'exchange': 'NSE', 'segment': 'NSECM', 'exchangeToken': 2885, 'bids': [{'volume': 1722, 'price': 1295.5, 'orders': 43}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}], 'offers': [{'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}], 'ltp': 1295.5, 'lastTradedQty': 10, 'buyQty': 1722, 'sellQty': 0, 'volume': 10429964, 'avgPrice': 1291.46, 'netChange': 0, 'ohlc': {'open': 1270, 'high': 1300.9, 'low': 1267, 'close': 1295.5}, 'lastTradedTs': '2025-04-21T10:29:33Z', 'ts': '2025-04-21T10:29:46Z'}
|
320
|
+
{'identifier': 'NSE:RELIANCE:2885', 'tradingSymbol': 'RELIANCE', 'exchange': 'NSE', 'segment': 'NSECM', 'exchangeToken': 2885, 'bids': [{'volume': 1722, 'price': 1295.5, 'orders': 43}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}], 'offers': [{'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}, {'volume': 0, 'price': 0, 'orders': 0}], 'ltp': 1295.5, 'lastTradedQty': 10, 'buyQty': 1722, 'sellQty': 0, 'volume': 10429964, 'avgPrice': 1291.46, 'netChange': 0, 'ohlc': {'open': 1270, 'high': 1300.9, 'low': 1267, 'close': 1295.5}, 'oi': 1234567, 'oiDayHigh': 1250000, 'oiDayLow': 1200000, 'lastTradedTs': '2025-04-21T10:29:33Z', 'ts': '2025-04-21T10:29:46Z'}
|
306
321
|
```
|
307
322
|
|
308
323
|
## Wizzer Client
|
@@ -1,9 +1,9 @@
|
|
1
|
-
wiz_trader/__init__.py,sha256=
|
1
|
+
wiz_trader/__init__.py,sha256=0pjCUUIWdupdbX9Rk7OcwJlW287LB1OvtkOFJES4m00,182
|
2
2
|
wiz_trader/apis/__init__.py,sha256=ItWKMOl4omiW0g2f-M7WRW3v-dss_ULd9vYnFyIIT9o,132
|
3
3
|
wiz_trader/apis/client.py,sha256=GY1aAaV4ia1tnFnB2qaNqnv-qeUvkVlvw9xOKN54qIs,59786
|
4
4
|
wiz_trader/quotes/__init__.py,sha256=RF9g9CNP6bVWlmCh_ad8krm3-EWOIuVfLp0-H9fAeEM,108
|
5
5
|
wiz_trader/quotes/client.py,sha256=oPDOKqc9EChID_V0_O7ziCdcDnyM_jC7uuKfkc1GwmI,10959
|
6
|
-
wiz_trader-0.
|
7
|
-
wiz_trader-0.
|
8
|
-
wiz_trader-0.
|
9
|
-
wiz_trader-0.
|
6
|
+
wiz_trader-0.25.0.dist-info/METADATA,sha256=SaChOGUc2nsJ7rno-ENsd5-VYI1XrKOSHHJOLfAJhM0,87770
|
7
|
+
wiz_trader-0.25.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
+
wiz_trader-0.25.0.dist-info/top_level.txt,sha256=lnYS_g8LlA6ryKYnvY8xIQ6K2K-xzOsd-99AWgnW6VY,11
|
9
|
+
wiz_trader-0.25.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|