nsepy
nsepy copied to clipboard
nse_py.get_history returns blank df for ["AFFLE","3IINFOTECH","TANLA", "SAHYADRI"]
nse_py.get_history returns blank df for ["AFFLE","3IINFOTECH","TANLA", "SAHYADRI"]
Seems to be happening now , coud be NSE issue
On Thu, Jul 22, 2021 at 7:54 PM Cyrus Lentin @.***> wrote:
nse_py.get_history returns blank df for ["AFFLE","3IINFOTECH","TANLA", "SAHYADRI"]
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/swapniljariwala/nsepy/issues/204, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACHEQ2BU6GFU3PFS7RNMLVLTZAS2BANCNFSM5A2D3DHQ .
Not happening for me. Checked yesterday. Will re-check today after market hours,
I also have the same issue for mentioned symbols.
Please do check and revert. The problem persists.
Looks like date specific data issue for some of these symbols.
"AFFLE" and "TANLA" seem to be returning data for most of the dates. Also getting data for "3IINFOTECH" for the below duration. However "SAHYADRI" is not a valid symbol for NSE.
`start = dt.datetime(2021,3,1) end = dt.datetime(2021,3,5) #tickers = ["AFFLE","3IINFOTECH","TANLA", "SAHYADRI"] tickers = ["3IINFOTECH","SAHYADRI"]
for s in tickers: PriceDataSet = get_history(symbol=s,start=start,end=end) print(PriceDataSet)`