Hey Statalisters,
I did a minor update in Stata 18 today to November 15, 2023. I utilized the package, "ascol" from Attaullah Shah. However, with the new update, I encountered the following error: <istmt>: 3499 asrolnw() not found.
I have reinstalled and updated the packages ascol and asrol, but the error persists.
On Attaullah´s website (https://fintechprofessor.com/2018/12.../#comment-5872) I found example code and even there the error persisted:
Did anyone also encounter the issue, and do you have a suggested solution?
I did a minor update in Stata 18 today to November 15, 2023. I utilized the package, "ascol" from Attaullah Shah. However, with the new update, I encountered the following error: <istmt>: 3499 asrolnw() not found.
I have reinstalled and updated the packages ascol and asrol, but the error persists.
On Attaullah´s website (https://fintechprofessor.com/2018/12.../#comment-5872) I found example code and even there the error persisted:
Code:
log using asrol.smcl clear set obs 1000 gen date=date(“1/1/2012” , “DMY”)+_n format %td date tsset date gen pr=10 replace pr=pr[_n-1]+uniform() if _n>1 gen simpleRi=(pr/l.pr)-1 gen logRi = ln(pr/l.pr) save stocks,replace set trace on ascol simpleRi, toweek returns(simple) set trace off log close
Comment