I want to use MATLAB to read the data from a URL which is dynamically changing. Can I do this? Here is my code:
function reading(company, signal)
url1='https://finance.yahoo.com';
url2='market-overview';
url=strcat(url1,'company',url2,'signal');
name=strcat(company,signal);
urlwrite('url','name.h5');
I got this error:
Either this URL could not be parsed or the protocol is not supported.
Can anyone help me ?