Life is Like a Boat

忘備録や経済、投資、プログラミングに関するメモやtipsなど

2018-10-11から1日間の記事一覧

SBIのポートフォリオから銘柄名と前日比をスクレイピングするスニペット

まずコードから Array.from(document.querySelectorAll('div.middleAreaM2 table:nth-of-type(4) > tbody > tr:nth-of-type(2) table tr')).filter((e, idx) => { return idx != 0 }).map((e) => { return Array.from(e.querySelectorAll('td')).filter((e, …