hi there, How do i compute monthly stock returns using monthly end prices in sas. The data i have is for 500 different stocks stacked together.
proc sort data=sashelp.stocks out=stocks;
by stock date;
run;
data returns;
set stocks;
by stock;
prev_open=lag(open);
return=log(open/prev_open);
if first.stock then return=.;
run;
Is your data already in a SAS data set?
If not, what are your plans to get it into a SAS data set?
If it is already a SAS data set, what are the names of the variables? Which ones are character and which ones are numeric?
Is the data complete (no months skipped in the middle)?
Do you want month over month returns, or some other returns?
Yes its already in Sas. The Variable names are DATE TICKER PRICE .....All of them are Character. All months are available. And i want month over month returns
How are you defining RETURN?
Return = Ln(Price t/ Price t-1)...where price t is today's price and price t-1 is previous month price of a given ticker.
proc sort data=sashelp.stocks out=stocks;
by stock date;
run;
data returns;
set stocks;
by stock;
prev_open=lag(open);
return=log(open/prev_open);
if first.stock then return=.;
run;
Thanks a bunch. It worked out well.
Hi, I wondering you are having problems in how to frame or ask a question by explaining the right set of details. Let the folks know,
1. what does your input dataset have
2. variable names and type
3. Your wanted output i.e present us a figure of your sample dataset: have(your input dataset) and want(your output dataset)
4. a Convert business logic or formula, something like a defined business requirement that is meant to be used in the input to get your wanted output.
5. size of the dataset, long or wide and how big?
I think had a link or a page that explains how to ask a question. You really need to let us the folks know as much details(simulated) as possible to get the best possible help.
Just another step, how do i compute the trailing/rolling standard deviation for the returns i have generated for the different Tickers/stocks
proc sort data=input; by tic date; run;
proc expand data=input out=output method = none ;
by tic;
convert ret= ret; convert ret=RETVOL / transformout=(MOVSTD 4); * 4 = number of 4 past/trailing obs to calculate std;
label RETVOL =rollingSTDofRET;
run;
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.