Yahoo Finance charts as image file
Yahoo Finance changed its API a while ago and since then loading data .csv
no longer works with the old method. This has already been discussed in several other questions.
However, the old version also allowed loading charts of a specific symbol via https://chart.finance.yahoo.com/z?s=<<TICKER>>
as a file .png
, which now also no longer works. The new Chart Viewer seems to display data by drawing to canvas with a JS script and there doesn't seem to be a "load as image" function.
So, is there any way on the new website to get the charts for the ticker symbol as a file, .png
or .svg
using a GET / POST request if possible, with the option to define parameters like in the old version?
source to share