I want to replicate the paper Drechsler, I., Savov, A., & Schnabl, P. (2021). Banking on deposits: Maturity transformation without interest rate risk. The Journal of Finance, 76(3), 1091-1143. and use their replication code. However, I keep having the error "==1 invalid name r(198);" when I try to run the following code:
if `run_SU_01' == 1 {
include "`setup_code'SU_01_main_setup.do"
}
I tried several ways: align the code in one row, delete the space (use ==1 rather than == 1), use = 1 , which did not work.
if `run_SU_01' == 1 {
include "`setup_code'SU_01_main_setup.do"
}
I tried several ways: align the code in one row, delete the space (use ==1 rather than == 1), use = 1 , which did not work.
Comment