|
Mark
2015-04-29 03:47:43
|
|
Hi,
I have been trying to download the NSE Nifty - S&P CNX Nifty data and it gives me 'No Data Available' message for all the indices. Is there any new downloader for downloading the NSE indices?
Also, if I have to download the Banknifty intraday data, what symbol should I use? Is there a way to download IndiaVix intraday data?
Thanks for your assistance.
Mark
|
|
|
|
QuantShare
2015-04-30 03:50:52
0
|
|
Mark,
You can use the default downloader to get data for NSE indices (check finance.yahoo.com for symbol names)
I am not aware of any other downloader for NSE indices.
|
|
|
|
Mark
2015-04-30 05:26:19
0
|
|
Thanks, I tried that but no success.
|
|
|
|
Gilari Decosta
2015-04-30 12:10:00
0
|
|
Try using symbol CNX NIFTY instead of S&P CNX NIFTY
|
|
|
|
Mark
2015-05-02 03:27:09
0
|
|
Thanks Gilari.. Tried CNX NIFTY and ^CNX NIFTY. Both did not work. What downloader are you using to download index quotes?
Basically I am only interested in the following 3 indices to get both Intraday and EOD date:
Nifty
Banknifty
Indiavix
Thanks so much for any input that you may provide.
|
|
|
|
Gilari Decosta
2015-05-02 11:40:17
0
|
|
I am using the same down loader,and faced same problem as you are facing now.I updated symbol NAME 1 as CNX NIFTY.
I don't remember exactly.But I think I have updated URL SCRIPT as given below
string edate = Functions.GetEndDate().ToString("dd-MM-yyyy", System.Globalization.CultureInfo.InvariantCulture);
string sdate = Functions.GetStartDate().ToString("dd-MM-yyyy", System.Globalization.CultureInfo.InvariantCulture);
string symbol = Functions.GetValues("SYMBOL");
string name = symbol.Replace("_", " ").Replace("^", "");
string indexType = name.Replace("&", "%26");
Functions.SetValues("fromDate", edate);
Functions.SetValues("toDate", sdate);
Functions.SetValues("indexType", indexType);
Functions.SetValues("SYMBOL1", name);
URLPath path = Functions.CreateURLPath();
path.AddURL("http://www.nse-india.com/products/dynaContent/equities/indices/historicalindices.jsp?indexType=[indexType]&fromDate=[fromDate]&toDate=[toDate]&SYMBOL=[SYMBOL1]", "Creating Request...");
path.AddURL("http://www.nse-india.com/content/indices/histdata/[SYMBOL1][fromDate]-[toDate].csv?symbol=[SYMBOL]", "Downloading...");
Functions.AddURLPath(path);
After this modification It run fine
|
|
|
|
Mark
2015-05-03 01:08:18
0
|
|
Thanks so much Gilari for taking the time to reply. I changed the URL script with yours above and the symbol too as per your instructions but still couldn't get it to work. If I am not asking too much, could you share your downloader with me? It's all right if you don't want to. Thanks for your time though and all your assistance to help me sort the issue.
|
|
|
|
Gilari Decosta
2015-05-03 01:21:07
0
|
|
I had sent same through support@quantshare.com.please contact them
|
|
|
|
Mark
2015-05-03 01:26:07
0
|
|
Thanks so much. I will follow it up with Quantshare support team.
Thanks.
|
|
|
|