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
![internet.PNG internet.PNG](https://community.jmp.com/t5/image/serverpage/image-id/22048i6BB5F5C8BC1309D1/image-size/large?v=v2&px=999)
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