Dear Friends,
I need to populate next day open price to the current day Buy Price. Is that possible? How will i consider future price value to current day. Please clarify.
Thanks!!!
Thanks much Reeza for your swift response and support.
Found a solution from below link,
http://www.lexjansen.com/nesug/nesug13/113_Final_Paper.pdf
data want;
set have;
by symbol;
where symbol="000001.SZ";
if eof1=0 then set have (firstobs=2 keep= open rename=(open=LEAD1)) end=eof1;
if last.symbol then lead1=.;
run;
And the logic is working.
Thanks!!!
Any things possible given enough time, money and resources.
For your problem you need to provide more information.
Maybe lag or retain will work, but without details those are just guesses.
http://stackoverflow.com/help/how-to-ask
Thanks Reeza.
I will add more details...
In the attached file, Buy/Sell signal are generated. If there is a Buy, then Buy price should be populated which is the open price of next day. Open price is the "open" column in the file.
So, how to populate next day open price adjacent to the Signal Buy?
Thanks!!!
Thanks much Reeza for your swift response and support.
Found a solution from below link,
http://www.lexjansen.com/nesug/nesug13/113_Final_Paper.pdf
data want;
set have;
by symbol;
where symbol="000001.SZ";
if eof1=0 then set have (firstobs=2 keep= open rename=(open=LEAD1)) end=eof1;
if last.symbol then lead1=.;
run;
And the logic is working.
Thanks!!!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.