NSE Cash Historical data in ascii TXT format from 1994-11-07 to 2016-06-17

#1
Hi All,
Here below is the link for Historical EOD data of

Data Downloader Data
MCX EOD Data from 2003-11-10 to 2016-06-22
www . 4shared. com/zip/JSXwFiyIce/DataDownloader_MCX_20031110-20.html

NSE Cash from 1994-11-03 to 2016-06-23
www . 4shared . com/zip/CzdG3CAOba/DataDownloader_NSEEQ_19941103-.html

NSE Futures from 2000-06-12 to 2016-06-23
www . 4shared . com/zip/Tx64BPqXba/DataDownloader-NSEFutures_2000.html

GetBhavCopy Data
NSE Cash from 1994-11-07 to 2016-06-23
www . 4shared . com/zip/0Z3jQ3evba/getbhavcopy-nseEQ_1994-11-07_2.html



This data can be directly imported in Metastock Convert feature.

When you download using getbhavcopy software, there will be 2 empty lines, so there may be some problem in importing in Metastock.
Those who want to have the code to remove empty lines, here below is the code:
---------------------


@echo off
setlocal enableextensions disabledelayedexpansion

call :getBatchFileFullPath batch
for %%a in ("%batch%") do set "folder=%%~dpa"
set "tempFile=%folder%\~%random%%random%%random%"

for %%a in ("%folder%\*") do if /i not "%%~fa"=="%batch%" (
findstr /v /r /c:"^$" "%%~fa" > "%tempFile%"
move /y "%tempFile%" "%%~fa" >nul
)
exit /b

:getBatchFileFullPath returnVar
set "%~1=%~f0"
goto :eof


------------------------------

Save this script as batch file and place it in same folder and run.

Thanks.
 
Last edited:
#9
Hello, Thanks for sharing this. I have a question. I do not see any NSE Index EOD data consistently present in GetBhavcopy & is missing for most dates in NSE Cash file.


I am looking for eod data from nse since inception for both indices & stocks. Anyone please help?

Hi All,
Here below is the link for Historical EOD data of

Data Downloader Data
MCX EOD Data from 2003-11-10 to 2016-06-22
www . 4shared. com/zip/JSXwFiyIce/DataDownloader_MCX_20031110-20.html

NSE Cash from 1994-11-03 to 2016-06-23
www . 4shared . com/zip/CzdG3CAOba/DataDownloader_NSEEQ_19941103-.html

NSE Futures from 2000-06-12 to 2016-06-23
www . 4shared . com/zip/Tx64BPqXba/DataDownloader-NSEFutures_2000.html

GetBhavCopy Data
NSE Cash from 1994-11-07 to 2016-06-23
www . 4shared . com/zip/0Z3jQ3evba/getbhavcopy-nseEQ_1994-11-07_2.html



This data can be directly imported in Metastock Convert feature.

When you download using getbhavcopy software, there will be 2 empty lines, so there may be some problem in importing in Metastock.
Those who want to have the code to remove empty lines, here below is the code:
---------------------


@echo off
setlocal enableextensions disabledelayedexpansion

call :getBatchFileFullPath batch
for %%a in ("%batch%") do set "folder=%%~dpa"
set "tempFile=%folder%\~%random%%random%%random%"

for %%a in ("%folder%\*") do if /i not "%%~fa"=="%batch%" (
findstr /v /r /c:"^$" "%%~fa" > "%tempFile%"
move /y "%tempFile%" "%%~fa" >nul
)
exit /b

:getBatchFileFullPath returnVar
set "%~1=%~f0"
goto :eof


------------------------------

Save this script as batch file and place it in same folder and run.

Thanks.
 
Last edited:

Similar threads