wiz-trader 0.20.0__tar.gz → 0.21.0__tar.gz
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-0.20.0/src/wiz_trader.egg-info → wiz_trader-0.21.0}/PKG-INFO +53 -1
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/README.md +52 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/pyproject.toml +1 -1
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/setup.py +1 -1
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader/__init__.py +1 -1
- {wiz_trader-0.20.0 → wiz_trader-0.21.0/src/wiz_trader.egg-info}/PKG-INFO +53 -1
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/MANIFEST.in +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/setup.cfg +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader/apis/__init__.py +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader/apis/client.py +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader/quotes/__init__.py +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader/quotes/client.py +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader.egg-info/SOURCES.txt +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader.egg-info/dependency_links.txt +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader.egg-info/requires.txt +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/src/wiz_trader.egg-info/top_level.txt +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/tests/test_apis.py +0 -0
- {wiz_trader-0.20.0 → wiz_trader-0.21.0}/tests/test_quotes.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wiz_trader
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.21.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
|
@@ -1628,6 +1628,58 @@ def visualize_option_chain(identifier, expiry):
|
|
1628
1628
|
visualize_option_chain("NSE:NIFTY 50:26000", "2025-05-30")
|
1629
1629
|
```
|
1630
1630
|
|
1631
|
+
#### Get Futures List
|
1632
|
+
|
1633
|
+
Fetch available futures contracts for an instrument:
|
1634
|
+
|
1635
|
+
```python
|
1636
|
+
# Get futures for an equity stock
|
1637
|
+
sbin_futures = client.get_futures_list("NSE:SBIN:3045")
|
1638
|
+
print(f"Found {len(sbin_futures)} futures contracts for SBIN")
|
1639
|
+
for future in sbin_futures:
|
1640
|
+
print(f"{future['tradingSymbol']} - Expiry: {future['expiry']} ({future['contract']})")
|
1641
|
+
|
1642
|
+
# Get futures for an index
|
1643
|
+
nifty_futures = client.get_futures_list("NSE:NIFTY 50:26000")
|
1644
|
+
print(f"Found {len(nifty_futures)} futures contracts for NIFTY 50")
|
1645
|
+
for future in nifty_futures:
|
1646
|
+
print(f"{future['tradingSymbol']} - Expiry: {future['expiry']} ({future['contract']})")
|
1647
|
+
```
|
1648
|
+
|
1649
|
+
#### Response Structure for Futures List
|
1650
|
+
|
1651
|
+
The `get_futures_list` method returns a list of dictionaries, each representing a futures contract:
|
1652
|
+
|
1653
|
+
```python
|
1654
|
+
[
|
1655
|
+
{
|
1656
|
+
# Exchange where the future is traded
|
1657
|
+
"exchange": "NSE",
|
1658
|
+
|
1659
|
+
# Trading symbol of the futures contract
|
1660
|
+
"tradingSymbol": "SBIN25MAYFUT",
|
1661
|
+
|
1662
|
+
# Exchange token for the futures contract
|
1663
|
+
"exchangeToken": 57515,
|
1664
|
+
|
1665
|
+
# Complete identifier for the futures contract
|
1666
|
+
"identifier": "NSE:SBIN25MAYFUT:57515",
|
1667
|
+
|
1668
|
+
# Expiry date in YYYY-MM-DD format
|
1669
|
+
"expiry": "2025-05-29",
|
1670
|
+
|
1671
|
+
# Contract type (near_month, mid_month, far_month)
|
1672
|
+
"contract": "near_month"
|
1673
|
+
},
|
1674
|
+
# Additional futures contracts...
|
1675
|
+
]
|
1676
|
+
```
|
1677
|
+
|
1678
|
+
The `contract` field indicates the type of futures contract:
|
1679
|
+
- **`near_month`**: Current month's futures contract
|
1680
|
+
- **`mid_month`**: Next month's futures contract
|
1681
|
+
- **`far_month`**: Month after next futures contract
|
1682
|
+
|
1631
1683
|
### Wizzer Client Examples
|
1632
1684
|
|
1633
1685
|
#### Market Data and Analysis Example
|
@@ -1601,6 +1601,58 @@ def visualize_option_chain(identifier, expiry):
|
|
1601
1601
|
visualize_option_chain("NSE:NIFTY 50:26000", "2025-05-30")
|
1602
1602
|
```
|
1603
1603
|
|
1604
|
+
#### Get Futures List
|
1605
|
+
|
1606
|
+
Fetch available futures contracts for an instrument:
|
1607
|
+
|
1608
|
+
```python
|
1609
|
+
# Get futures for an equity stock
|
1610
|
+
sbin_futures = client.get_futures_list("NSE:SBIN:3045")
|
1611
|
+
print(f"Found {len(sbin_futures)} futures contracts for SBIN")
|
1612
|
+
for future in sbin_futures:
|
1613
|
+
print(f"{future['tradingSymbol']} - Expiry: {future['expiry']} ({future['contract']})")
|
1614
|
+
|
1615
|
+
# Get futures for an index
|
1616
|
+
nifty_futures = client.get_futures_list("NSE:NIFTY 50:26000")
|
1617
|
+
print(f"Found {len(nifty_futures)} futures contracts for NIFTY 50")
|
1618
|
+
for future in nifty_futures:
|
1619
|
+
print(f"{future['tradingSymbol']} - Expiry: {future['expiry']} ({future['contract']})")
|
1620
|
+
```
|
1621
|
+
|
1622
|
+
#### Response Structure for Futures List
|
1623
|
+
|
1624
|
+
The `get_futures_list` method returns a list of dictionaries, each representing a futures contract:
|
1625
|
+
|
1626
|
+
```python
|
1627
|
+
[
|
1628
|
+
{
|
1629
|
+
# Exchange where the future is traded
|
1630
|
+
"exchange": "NSE",
|
1631
|
+
|
1632
|
+
# Trading symbol of the futures contract
|
1633
|
+
"tradingSymbol": "SBIN25MAYFUT",
|
1634
|
+
|
1635
|
+
# Exchange token for the futures contract
|
1636
|
+
"exchangeToken": 57515,
|
1637
|
+
|
1638
|
+
# Complete identifier for the futures contract
|
1639
|
+
"identifier": "NSE:SBIN25MAYFUT:57515",
|
1640
|
+
|
1641
|
+
# Expiry date in YYYY-MM-DD format
|
1642
|
+
"expiry": "2025-05-29",
|
1643
|
+
|
1644
|
+
# Contract type (near_month, mid_month, far_month)
|
1645
|
+
"contract": "near_month"
|
1646
|
+
},
|
1647
|
+
# Additional futures contracts...
|
1648
|
+
]
|
1649
|
+
```
|
1650
|
+
|
1651
|
+
The `contract` field indicates the type of futures contract:
|
1652
|
+
- **`near_month`**: Current month's futures contract
|
1653
|
+
- **`mid_month`**: Next month's futures contract
|
1654
|
+
- **`far_month`**: Month after next futures contract
|
1655
|
+
|
1604
1656
|
### Wizzer Client Examples
|
1605
1657
|
|
1606
1658
|
#### Market Data and Analysis Example
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='wiz_trader',
|
5
|
-
version='0.
|
5
|
+
version='0.21.0',
|
6
6
|
description='A Python SDK for connecting to the Wizzer.',
|
7
7
|
long_description=open('README.md').read() if open('README.md') else "",
|
8
8
|
long_description_content_type='text/markdown',
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wiz_trader
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.21.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
|
@@ -1628,6 +1628,58 @@ def visualize_option_chain(identifier, expiry):
|
|
1628
1628
|
visualize_option_chain("NSE:NIFTY 50:26000", "2025-05-30")
|
1629
1629
|
```
|
1630
1630
|
|
1631
|
+
#### Get Futures List
|
1632
|
+
|
1633
|
+
Fetch available futures contracts for an instrument:
|
1634
|
+
|
1635
|
+
```python
|
1636
|
+
# Get futures for an equity stock
|
1637
|
+
sbin_futures = client.get_futures_list("NSE:SBIN:3045")
|
1638
|
+
print(f"Found {len(sbin_futures)} futures contracts for SBIN")
|
1639
|
+
for future in sbin_futures:
|
1640
|
+
print(f"{future['tradingSymbol']} - Expiry: {future['expiry']} ({future['contract']})")
|
1641
|
+
|
1642
|
+
# Get futures for an index
|
1643
|
+
nifty_futures = client.get_futures_list("NSE:NIFTY 50:26000")
|
1644
|
+
print(f"Found {len(nifty_futures)} futures contracts for NIFTY 50")
|
1645
|
+
for future in nifty_futures:
|
1646
|
+
print(f"{future['tradingSymbol']} - Expiry: {future['expiry']} ({future['contract']})")
|
1647
|
+
```
|
1648
|
+
|
1649
|
+
#### Response Structure for Futures List
|
1650
|
+
|
1651
|
+
The `get_futures_list` method returns a list of dictionaries, each representing a futures contract:
|
1652
|
+
|
1653
|
+
```python
|
1654
|
+
[
|
1655
|
+
{
|
1656
|
+
# Exchange where the future is traded
|
1657
|
+
"exchange": "NSE",
|
1658
|
+
|
1659
|
+
# Trading symbol of the futures contract
|
1660
|
+
"tradingSymbol": "SBIN25MAYFUT",
|
1661
|
+
|
1662
|
+
# Exchange token for the futures contract
|
1663
|
+
"exchangeToken": 57515,
|
1664
|
+
|
1665
|
+
# Complete identifier for the futures contract
|
1666
|
+
"identifier": "NSE:SBIN25MAYFUT:57515",
|
1667
|
+
|
1668
|
+
# Expiry date in YYYY-MM-DD format
|
1669
|
+
"expiry": "2025-05-29",
|
1670
|
+
|
1671
|
+
# Contract type (near_month, mid_month, far_month)
|
1672
|
+
"contract": "near_month"
|
1673
|
+
},
|
1674
|
+
# Additional futures contracts...
|
1675
|
+
]
|
1676
|
+
```
|
1677
|
+
|
1678
|
+
The `contract` field indicates the type of futures contract:
|
1679
|
+
- **`near_month`**: Current month's futures contract
|
1680
|
+
- **`mid_month`**: Next month's futures contract
|
1681
|
+
- **`far_month`**: Month after next futures contract
|
1682
|
+
|
1631
1683
|
### Wizzer Client Examples
|
1632
1684
|
|
1633
1685
|
#### Market Data and Analysis Example
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|