Date: Thu, 20 Apr 2006 02:12:20 -0700
Reply-To: Manu <manowiecki@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Manu <manowiecki@GMAIL.COM>
Organization: http://groups.google.com
Subject: PROC GPLOT and intraday stock data (datetime discretness problem).
Content-Type: text/plain; charset="iso-8859-1"
Hi All !
I have folowing problem - i am trying to plot a chart with intraday
stock data :
proc gplot data=Stocks;
symbol1 color=red
interpol=join
value=dot
height=1;
plot Price*DateTime;
format DateTime datetime18.;
by ISIN;
run;
quit;
and SAS prepares wrong horizontal axis. Because stocks are traded only
between 10:00 AM and 4:00 PM i have got a chart that have timeperiods
04:01 PM -> 09:50 AM without datapoint and durning day-trading i have
datapoints.
How to skip on my chart this night periods ?
Best regards,
Manu
|