I am very new with EViews. Can you help me how to save the years from the structural break test? Here is my simple code and attached is the sample data. The output that I aim is dummy variable for the years when structural break take place for each country/variable. Thank you.
Code: Select all
%country = "BGD IND LKA MDV PAK"
' Loop through each dependent variable and run the regression
for %y {%country}
' Create an equation object with a dynamic name
equation eq_{%y}
' Estimate the regression
eq_{%y}.ls {%y} c year
' Run multibreak test
eq_{%y}.multibreak c year
next
Pras
