You can directly access Yahoo's website data by going to:
File=>Internet Open=>Web Page
The data table it downloads has a "Source" entry which provides one with the JSL that can be used to directly open the table from JSL
So here is the script that directly opens the Yahoo table
names default to here(1);
Open(
"https://finance.yahoo.com/quote/GE/history?period1=-252374400&period2=1583107200&interval=1d&filter=history&frequency=1d",
HTML Table( 1, Column Names( 1 ), Data Starts( 2 ) )
);
Jim