Traderji.com - Discussion forum for Stocks Commodities & Forex

Amibroker Database for NSE stocks

Discuss Amibroker Database for NSE stocks at the AmiBroker within the Traderji.com - Discussion forum for Stocks Commodities & Forex; hi murthymsr Thanks a lot for the link.Sorry to have troubled you.Next time I try ...


Go Back   Traderji.com - Discussion forum for Stocks Commodities & Forex > TOOLS & RESOURCES > Software > AmiBroker

Notices


Advertise Here

Reply
 
Thread Tools
Sponsored Links
  #71  
Old 13th November 2006, 10:45 AM
rpc rpc is offline
Member
 
Join Date: Aug 2005
Posts: 358
Thanks: 3
Thanked 0 Times in 0 Posts
rpc is on a distinguished road
Reputation: 21
Default Re: Amibroker Database for NSE stocks

hi murthymsr
Thanks a lot for the link.Sorry to have troubled you.Next time I try to search first and then ask on this forum.
with warm regards
rpc
Reply With Quote
Sponsored Links
  #72  
Old 19th November 2006, 04:15 AM
Member
 
Join Date: Jun 2006
Location: Pune
Posts: 49
Thanks: 5
Thanked 3 Times in 2 Posts
jayzarna is on a distinguished road
Reputation: 23
Default Re: Amibroker Database for NSE stocks

Hello Murthy Garu or Karthik,

New here. I have downloaded NSE data both with CEM downloader as well as Pankaj's software Download and convertor. CEM requires a favorite list to be initially made and as I assumed that the stocks would be different in each year came up with 2063 stocks. After a long wait I managed the text file and imported. then I cleaned up as your suggestion and then finally deleted the stocks that were not in the list you had. There are a few new ones which I have input.

I have also got details of the split and bonus from your link in the post. My question is does one apply for each year going back to 2000, which is the max the site offers. IL&FS site. What happens to price details prior to that or does one simply then use data from 2000 onwards to be accurate. If Bhav copy is raw data, then would I still not have incorrect data post 1999 and pre 2000 in this case?

I am trying to have data integrity as much as possible, a stickler which I see is also the spirit on the forum.

I am yet to progress to the other issue. First the split and bonus issues though. The drop down menu also mentioned rights issue? We do not do anything with that or???

thanks again - I am learning quite a lot, thanks to all of you.

Jayesh
Reply With Quote
  #73  
Old 19th November 2006, 05:18 AM
Member
 
Join Date: Jun 2006
Location: Pune
Posts: 49
Thanks: 5
Thanked 3 Times in 2 Posts
jayzarna is on a distinguished road
Reputation: 23
Default Re: Amibroker Database for NSE stocks

Hello,

For those of you who may want an Excel file with the splits and bonuses from 2000. This is a cut and paste operation from the IL&FS site.

regards

Jayesh
Attached Files
File Type: xls splits and bonuses from 2000 as per IL&FS site.xls (45.0 KB, 101 views)
Reply With Quote
  #74  
Old 19th November 2006, 05:23 AM
Member
 
Join Date: Jun 2006
Location: Pune
Posts: 49
Thanks: 5
Thanked 3 Times in 2 Posts
jayzarna is on a distinguished road
Reputation: 23
Default Re: Amibroker Database for NSE stocks

New listing details from the NSE site. As I had downloaded it, thought I may as well post here, in case someone needs it.

regards

jayesh
Attached Files
File Type: doc recent_listing.doc (41.5 KB, 57 views)
Reply With Quote
  #75  
Old 19th November 2006, 05:56 PM
Member
 
Join Date: Mar 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
rajivkarekar is on a distinguished road
Reputation: 20
Default Re: Amibroker Database for NSE stocks

Thanks a lot for your extremely useful informations.
Reply With Quote
  #76  
Old 21st November 2006, 10:47 AM
Member
 
Join Date: Nov 2006
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
ajith_kz is on a distinguished road
Reputation: 20
Default Re: Amibroker Database for NSE stocks

Sir,
I am new to Tradreji.co, i would like to know how to use amibroker software for indian market, and how to incooperate the NSE share with amibroker software.Kindly inform me.
Regards
Ajith
Reply With Quote
  #77  
Old 23rd November 2006, 06:30 PM
Member
 
Join Date: Sep 2005
Location: hyderaabd
Posts: 777
Thanks: 20
Thanked 25 Times in 11 Posts
murthymsr will become famous soon enough
Reputation: 52
Default Re: Amibroker Database for NSE stocks

Quote:
Originally Posted by ajith_kz View Post
Sir,
I am new to Tradreji.co, i would like to know how to use amibroker software for indian market, and how to incooperate the NSE share with amibroker software.Kindly inform me.
Regards
Ajith
dear ajith,
you may go through the various threads running on AmiBroker in this forum and you may get the required familiarity. still any questions, you may post and surely somebody will answer your query.

all the best.
murthymsr
Reply With Quote
  #78  
Old 25th November 2006, 01:00 PM
Member
 
Join Date: Aug 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
rdpaul is on a distinguished road
Reputation: 20
Default Re: Amibroker Database for NSE stocks

Hi Mr. Murthymsr,

I have been following ur very enlightening posts in this forum with great admiration. I am taking my first tentative steps with AFL and wud appreciate if u cud answer/ throw some light on the following with regards to the AFL code that has been posted in this thread:

1. In the AllMySymbolsAfl.txt posted by u to retrieve all the symbols in the database, u have used the following code:
"Buy = Close > myclose AND Volume > myvolume AND Close * Volume / 100000 > mylakhs;"
I believe that we need to filter out quotations with 0 volume (in case of some indices in the symbol list), so the volume test condition is understandable. Why are we testing for "Close > 0" and the 3rd condition above.

2. If we really wanted ALL the symbols then wud the following code be valid?:
.....
Buy = 1; //includes all quotes
//no need for Sellsignal
Buy = ExRem(Buy,0);

Thanks in advance for your feedback

With regards
Reply With Quote
  #79  
Old 25th November 2006, 03:05 PM
Member
 
Join Date: Sep 2005
Location: hyderaabd
Posts: 777
Thanks: 20
Thanked 25 Times in 11 Posts
murthymsr will become famous soon enough
Reputation: 52
Default Re: Amibroker Database for NSE stocks

Quote:
Originally Posted by rdpaul View Post
Hi Mr. Murthymsr,

I have been following ur very enlightening posts in this forum with great admiration. I am taking my first tentative steps with AFL and wud appreciate if u cud answer/ throw some light on the following with regards to the AFL code that has been posted in this thread:

1. In the AllMySymbolsAfl.txt posted by u to retrieve all the symbols in the database, u have used the following code:
"Buy = Close > myclose AND Volume > myvolume AND Close * Volume / 100000 > mylakhs;"
I believe that we need to filter out quotations with 0 volume (in case of some indices in the symbol list), so the volume test condition is understandable. Why are we testing for "Close > 0" and the 3rd condition above.

2. If we really wanted ALL the symbols then wud the following code be valid?:
.....
Buy = 1; //includes all quotes
//no need for Sellsignal
Buy = ExRem(Buy,0);

Thanks in advance for your feedback

With regards
thanks paul for your interest in this thread and the good words.

Quote:
/* AllMyStocks.AFL : To get All stocks in the database for assigning sectors and Industries
written by murthymsr
*/

// inputs
myvolume = 0;
myclose = 0;
myLakhs = 0;

// list stocks symbols meeting the inputted criteria

// Buy = Volume > myvolume;
Buy = Close > myclose AND Volume > myvolume AND Close * Volume / 100000 > mylakhs;


Sell=0;
Buy = ExRem(Buy, Sell);
Sell = ExRem(Sell, Buy);
the AFL referred is reproduced above.
this is a type of standard format of stock selection template i would prefer to have.
with this you may select stocks meeting different set of filter conditions.

however, as you want ALL the stocks, at this time, with

myvolume=0;
myclose=0;
myLakhs=0;

Buy = Close > myclose AND Volume > myvolume AND Close * Volume / 100000 > mylakhs;

is the same as :
Buy = close>0 AND Volume>0 AND close*volume>0;

and
buy=volume>0;

which is what you wanted to say.

if you wanted to use the AFL for generating the list of ALL traded symbols, and for NOTHING else,

buy=volume>0;

is more than adequate, as you rightly pointed out.


further, you may assign different vaslues to myclose,myvolume & mylakhs to get a reduced set of stocks meeting the specified criteria.

such template will have many applications
you may also read my post at:

http://www.traderji.com/66542-post419.html

to get the template in a different way. i too, like you all studying and improvising my knowledge as time passes by and sharing my observations in this forum.

thanks again for the interest.

murthymsr
Reply With Quote
  #80  
Old 25th November 2006, 09:47 PM
Moderator
 
Join Date: Jul 2005
Location: kuwait
Posts: 1,456
Blog Entries: 5
Thanks: 45
Thanked 549 Times in 102 Posts
karthikmarar is a name known to allkarthikmarar is a name known to allkarthikmarar is a name known to allkarthikmarar is a name known to allkarthikmarar is a name known to allkarthikmarar is a name known to all
Reputation: 629
Default Re: Amibroker Database for NSE stocks

Hi friends

I had promised keep you updated on the new listing Sector, Industry assignment. Could not do so due to work overload. Anyway slowly we will catch up with it one by one as and when I find time..

New listing Update:

Company: GTL Infrastructure Ltd
Symbol: GTLINFRA
Nature of Business: India’s First 3rd Party shared user telecom Infrastructure provider
Sector: Telecom
Industry : Equipment ( maybe be debatable. But due lack of other section we will put it under equipment)


Regards

Karthik
Reply With Quote
Sponsored Links

Reply

Bookmarks


Advertise Here


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads for: Amibroker Database for NSE stocks
Thread Thread Starter Forum Replies Last Post
Free database and downloader for Indian Stocks Neal Data Feeds 53 10th October 2007 05:59 AM
Database for company Financials and Symbol List and other files pkjha30 Software 10 27th April 2007 10:25 AM


All times are GMT +5.5. The time now is 12:04 PM.

Indemnity, Disclaimer & Disclosure Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum Rules Disclaimer & Disclosure and indemnify Traderji.com, its associates and related parties of all claims howsoever resulting from the usage of the forum.
Disclaimer: Trading or investing in stocks & commodities is a high risk activity. Any action you choose to take in the markets is totally your own responsibility. Traderji.com will not be liable for any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein. The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.
 


Copyright © 2001 - 2008, Traderji.com All Rights Reserved.

Recommended Websites - www.TradersEdgeIndia.com - www.TradingPicks.com - www.MasterOfTrading.com