Trader-AngleOne 1.3__tar.gz → 1.4__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.
- {trader_angleone-1.3 → trader_angleone-1.4}/PKG-INFO +8 -8
- {trader_angleone-1.3 → trader_angleone-1.4}/README.md +7 -7
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne.egg-info/PKG-INFO +8 -8
- {trader_angleone-1.3 → trader_angleone-1.4}/pyproject.toml +1 -1
- {trader_angleone-1.3 → trader_angleone-1.4}/LICENSE +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne/__init__.py +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne/main.py +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne/map_stock.py +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne.egg-info/SOURCES.txt +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne.egg-info/dependency_links.txt +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne.egg-info/requires.txt +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/Trader_AngleOne.egg-info/top_level.txt +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/setup.cfg +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/setup.py +0 -0
- {trader_angleone-1.3 → trader_angleone-1.4}/tests/test_code.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Trader_AngleOne
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4
|
|
4
4
|
Summary: A lightweight, efficient Python wrapper for fetching historical equity market data via Angel One SmartAPI.
|
|
5
5
|
Author-email: ROHIT GUPTA <everything108rp@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -63,25 +63,25 @@ angle = TraderAngleOne(**crd)
|
|
|
63
63
|
# 3. Fetch Historical Data (Parameters: Token/Symbol, Interval, Start Time, End Time, Exchange)
|
|
64
64
|
|
|
65
65
|
# Fetch 1-Minute Data
|
|
66
|
-
reliance_1 = angle.get_history_data('RELIANCE', '1', '2026-01-01
|
|
66
|
+
reliance_1 = angle.get_history_data('RELIANCE', '1', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
67
67
|
|
|
68
68
|
# Fetch 3-Minute Data
|
|
69
|
-
reliance_3 = angle.get_history_data('RELIANCE', '3', '2026-01-01
|
|
69
|
+
reliance_3 = angle.get_history_data('RELIANCE', '3', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
70
70
|
|
|
71
71
|
# Fetch 5-Minute Data
|
|
72
|
-
reliance_5 = angle.get_history_data('RELIANCE', '5', '2026-01-01
|
|
72
|
+
reliance_5 = angle.get_history_data('RELIANCE', '5', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
73
73
|
|
|
74
74
|
# Fetch 15-Minute Data
|
|
75
|
-
reliance_15 = angle.get_history_data('RELIANCE', '15', '2026-01-01
|
|
75
|
+
reliance_15 = angle.get_history_data('RELIANCE', '15', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
76
76
|
|
|
77
77
|
# Fetch 30-Minute Data
|
|
78
|
-
reliance_30 = angle.get_history_data('RELIANCE', '30', '2026-01-01
|
|
78
|
+
reliance_30 = angle.get_history_data('RELIANCE', '30', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
79
79
|
|
|
80
80
|
# Fetch 1-Hour Data
|
|
81
|
-
reliance_1H = angle.get_history_data('RELIANCE', '1H', '2026-01-01
|
|
81
|
+
reliance_1H = angle.get_history_data('RELIANCE', '1H', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
82
82
|
|
|
83
83
|
# Fetch 1-Day Data
|
|
84
|
-
reliance_1D = angle.get_history_data('RELIANCE', '1D', '2026-01-01
|
|
84
|
+
reliance_1D = angle.get_history_data('RELIANCE', '1D', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
---
|
|
@@ -44,25 +44,25 @@ angle = TraderAngleOne(**crd)
|
|
|
44
44
|
# 3. Fetch Historical Data (Parameters: Token/Symbol, Interval, Start Time, End Time, Exchange)
|
|
45
45
|
|
|
46
46
|
# Fetch 1-Minute Data
|
|
47
|
-
reliance_1 = angle.get_history_data('RELIANCE', '1', '2026-01-01
|
|
47
|
+
reliance_1 = angle.get_history_data('RELIANCE', '1', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
48
48
|
|
|
49
49
|
# Fetch 3-Minute Data
|
|
50
|
-
reliance_3 = angle.get_history_data('RELIANCE', '3', '2026-01-01
|
|
50
|
+
reliance_3 = angle.get_history_data('RELIANCE', '3', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
51
51
|
|
|
52
52
|
# Fetch 5-Minute Data
|
|
53
|
-
reliance_5 = angle.get_history_data('RELIANCE', '5', '2026-01-01
|
|
53
|
+
reliance_5 = angle.get_history_data('RELIANCE', '5', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
54
54
|
|
|
55
55
|
# Fetch 15-Minute Data
|
|
56
|
-
reliance_15 = angle.get_history_data('RELIANCE', '15', '2026-01-01
|
|
56
|
+
reliance_15 = angle.get_history_data('RELIANCE', '15', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
57
57
|
|
|
58
58
|
# Fetch 30-Minute Data
|
|
59
|
-
reliance_30 = angle.get_history_data('RELIANCE', '30', '2026-01-01
|
|
59
|
+
reliance_30 = angle.get_history_data('RELIANCE', '30', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
60
60
|
|
|
61
61
|
# Fetch 1-Hour Data
|
|
62
|
-
reliance_1H = angle.get_history_data('RELIANCE', '1H', '2026-01-01
|
|
62
|
+
reliance_1H = angle.get_history_data('RELIANCE', '1H', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
63
63
|
|
|
64
64
|
# Fetch 1-Day Data
|
|
65
|
-
reliance_1D = angle.get_history_data('RELIANCE', '1D', '2026-01-01
|
|
65
|
+
reliance_1D = angle.get_history_data('RELIANCE', '1D', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Trader_AngleOne
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4
|
|
4
4
|
Summary: A lightweight, efficient Python wrapper for fetching historical equity market data via Angel One SmartAPI.
|
|
5
5
|
Author-email: ROHIT GUPTA <everything108rp@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -63,25 +63,25 @@ angle = TraderAngleOne(**crd)
|
|
|
63
63
|
# 3. Fetch Historical Data (Parameters: Token/Symbol, Interval, Start Time, End Time, Exchange)
|
|
64
64
|
|
|
65
65
|
# Fetch 1-Minute Data
|
|
66
|
-
reliance_1 = angle.get_history_data('RELIANCE', '1', '2026-01-01
|
|
66
|
+
reliance_1 = angle.get_history_data('RELIANCE', '1', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
67
67
|
|
|
68
68
|
# Fetch 3-Minute Data
|
|
69
|
-
reliance_3 = angle.get_history_data('RELIANCE', '3', '2026-01-01
|
|
69
|
+
reliance_3 = angle.get_history_data('RELIANCE', '3', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
70
70
|
|
|
71
71
|
# Fetch 5-Minute Data
|
|
72
|
-
reliance_5 = angle.get_history_data('RELIANCE', '5', '2026-01-01
|
|
72
|
+
reliance_5 = angle.get_history_data('RELIANCE', '5', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
73
73
|
|
|
74
74
|
# Fetch 15-Minute Data
|
|
75
|
-
reliance_15 = angle.get_history_data('RELIANCE', '15', '2026-01-01
|
|
75
|
+
reliance_15 = angle.get_history_data('RELIANCE', '15', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
76
76
|
|
|
77
77
|
# Fetch 30-Minute Data
|
|
78
|
-
reliance_30 = angle.get_history_data('RELIANCE', '30', '2026-01-01
|
|
78
|
+
reliance_30 = angle.get_history_data('RELIANCE', '30', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
79
79
|
|
|
80
80
|
# Fetch 1-Hour Data
|
|
81
|
-
reliance_1H = angle.get_history_data('RELIANCE', '1H', '2026-01-01
|
|
81
|
+
reliance_1H = angle.get_history_data('RELIANCE', '1H', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
82
82
|
|
|
83
83
|
# Fetch 1-Day Data
|
|
84
|
-
reliance_1D = angle.get_history_data('RELIANCE', '1D', '2026-01-01
|
|
84
|
+
reliance_1D = angle.get_history_data('RELIANCE', '1D', '2026-01-01 09:15', '2026-01-02 15:30', 'NSE')
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
---
|
|
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
|