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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Trader_AngleOne
3
- Version: 1.3
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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 9:15', '2026-01-02 15:30', 'NSE')
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
  ---
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "Trader_AngleOne"
7
- version = "1.3"
7
+ version = "1.4"
8
8
  authors = [
9
9
  { name="ROHIT GUPTA", email="everything108rp@gmail.com" },
10
10
  ]
File without changes
File without changes
File without changes