Thanks @Reeza@PeterClemmensen
Now I calculated Sum Square Error, Sum Absolute Error, Sum Absolute percentage error by using
proc print data=calcu1;
var nyse forecast std Absolute_errors Square_errors
Absolute_error_percentage correct_sign_perc;
sum Absolute_errors Square_errors Absolute_error_percentage correct_sign_perc;
run;
output

Now I would like to calculate the following
My observation is 22
1) Mean Square error (Sum Square error / 22)
2) Mean Absolute error (Sum Absolute error / 22)
3) Mean Absolute percentage error (Sum Absolute Percentage error /22)
4) % correct sign _prediction - I just need to print the above 13 value in the table into 13 %.
5) Finally, I want to calculate = RMSE (Sq.rt(mean square error)
The above items need to be stored in the same table or a different table:
And I would like to have the following

I have gone through all the posts but unable to find the solution. Could you please help? Either I need to have the details in a different table or in the same table