Update nsepython.py
Browse files- nsepython.py +4 -1
nsepython.py
CHANGED
|
@@ -185,7 +185,10 @@ def nse_bulkdeals(): return pd.read_csv("https://archives.nseindia.com/content/e
|
|
| 185 |
def nse_blockdeals(): return pd.read_csv("https://archives.nseindia.com/content/equities/block.csv")
|
| 186 |
#nse daily report
|
| 187 |
def nse_bhavcopy(d): return pd.read_csv("https://archives.nseindia.com/products/content/sec_bhavdata_full_"+d.replace("-","")+".csv")
|
| 188 |
-
def nse_highlow(d):
|
|
|
|
|
|
|
|
|
|
| 189 |
|
| 190 |
|
| 191 |
|
|
|
|
| 185 |
def nse_blockdeals(): return pd.read_csv("https://archives.nseindia.com/content/equities/block.csv")
|
| 186 |
#nse daily report
|
| 187 |
def nse_bhavcopy(d): return pd.read_csv("https://archives.nseindia.com/products/content/sec_bhavdata_full_"+d.replace("-","")+".csv")
|
| 188 |
+
def nse_highlow(d):
|
| 189 |
+
df= pd.read_csv("https://archives.nseindia.com/content/CM_52_wk_High_low_"+d.replace("-","")+".csv")
|
| 190 |
+
print(df)
|
| 191 |
+
return df
|
| 192 |
|
| 193 |
|
| 194 |
|