How can I get data from a website?

조회 수: 4 (최근 30일)
Albert Añaños
Albert Añaños 2020년 2월 20일
답변: Albert Añaños 2020년 2월 24일
Hi, I am trying to read financial data from pages like this one: https://www.investing.com/funds/bankinter-indice-america-fi-historical-data
I think it's not a RESTful site (probably uses javascript), so webread does not work here.
I have also tried urlfilter, but it misses the dates.
Is there an easy way to get that type of data into MATLAB? Thanks!

채택된 답변

Albert Añaños
Albert Añaños 2020년 2월 24일
Thank Jalaj!
I followed the examples and found a quick way to do this:
url_string = ('https://www.investing.com/funds/bankinter-indice-america-fi-historical-data');
nr_table = 1;
out_table = getTableFromWeb_mod(url_string, nr_table);
The function getTableFromWeb_mod simplifies all the complexity of using regexp, multiple tables in the page, etc.

추가 답변 (1개)

Jalaj Gambhir
Jalaj Gambhir 2020년 2월 24일
Hi,
You can use a combination of webread and regexp, to extract the required table (in this case, has class = "genTbl closedTbl historicalTbl"). You can refer to examples here.

카테고리

Help CenterFile Exchange에서 Web Services에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by