Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
data test;
infile blah recfm=v lrecl=2056 dlm=' ' missover;
length code $5
date 8
session 4
hour 4
price 6.
type $1
market $1
correction $1;
informat date yymmdd8.;
input code
date
session
hour
price
type
market
correction;
run;