Getting stock graphs from yahoo finance
Asked Answered
C

2

8

I am using yahoo finance to get stock quotes. Now i want to get the graph of a particular company. Is it possible to do this using yahoo. If not could someone please provide some other api through which one could achieve this. ( the 20 minute delay is not an issue at all). I am looking for stocks listed in bse and nse.

Courteous answered 21/3, 2012 at 15:9 Comment(0)
E
22

Yahoo Finance API lets you retrieve graphs of stocks.

The main url is https://chart.finance.yahoo.com/z?s=AAPL&t=6m&q=l&l=on&z=s&p=m50,m200

For options to use, please refer to this page.

The result is a picture, so you just have to write (for eg in HTML):

<img src="https://chart.finance.yahoo.com/z?s=AAPL&t=6m&q=l&l=on&z=s&p=m50,m200"/>

to display:

Please note that I'm not sure if Yahoo Finance supports stocks for India, http://in.finance.yahoo.com/q?s=%5EBSESN and http://in.finance.yahoo.com/q/cp?s=%5ENSEI don't seem to display list of components...

Eritrea answered 14/8, 2012 at 8:30 Comment(4)
link for options is out of date, but this endpoint still works. any suggestions for another source?Seraphic
See here for more, though I haven't tried them: blog.habrador.com/2013/10/…Redraft
Archived link of Yahoo Finance options: web.archive.org/web/20160702182327/https://code.google.com/p/…Cryptogenic
this is out of dateSubjunction
Y
0

I am using Linux to get tickers/stock into Gnucash. My Finance::Quote, Cpan. Perl are all up to date, Gnucash wont see it.

Yachtsman answered 28/11, 2023 at 17:44 Comment(1)
As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.Katzenjammer

© 2022 - 2024 — McMap. All rights reserved.