Anyway, if I implement your previous suggestion into my 'test program' it works like a charm. The only issue is that I also want to incorporate dummy variables.
Now for slope-dummies there is no problem at all; I just create those by multiplying the dummy with a variable of choice and make sure that it gets placed into the right group. However, I get stuck when figuring out how to implement the intercept-dummies.
These dummies are based on the variables which aren't present for all the series, so it's quite related to the original problem. Thus, when I use the following the specification (for example)
Code: Select all
alfa_ts1 beta_ts1 gamma_ts1 beta_ts1*dummy1_ts1 c(1) c(2)*dummy_1_ts1
Code: Select all
equation eq_alfa_ts{!i}.ls(n) ts{!i} c(1) c(2)*dummy1_ts{!i}
Thanks a million for the help you already gave me! Hope I can get of your back quickly, sorry for the harrasment.
PS. I added my test program with the above described dummy specification so you can also take a look at that..
