Get unique strings in a sVector
Hello - I am using Eviews 8.1. I have a sVector allSeries and I want to be able to pull unique strings and store it in an another sVector. I wrote this:Code:string comboStr = @wjoin(allSeries)string...
View Articlestacked bar plus line graph
It can be done in EViews 9 via mixed graphs.Code:group g x y z 'create a group containing x y zg.mixed stackedbar(1,2) line(3) 'create a mixed graph where x and y are stacked bars and z is a line
View ArticleECB SDW and Eurostat Add-in
Hi there, Maybe this is not the correct place where to post this but...I was wondering if you could include an Add-in to download series from ECB´s SDW and Eurostat. Currently, using Quandl one can...
View ArticleOpen dialog file selection
If you ctrl-o to open, the file dialog correctly only lists *.wf files. However, if you enter an initial letter in the filename field you also get *.prg files that start with that letter. (Opening one...
View Articlemean and var of series by every two obs
ok! Mr stratz, thanks for all your efforts, same for Mr Gareth.
View Articlegenerate trend between two date
Hi everybody,how can generate trend between two date, for dummy it's easy by @during("date1 date2"), i have combined @trend(@during("date1 date2")) but no idea.i have 400 obs monthly to generate some...
View Articlegenerate trend between two date
for example: generate trend between 1990m01 and 1997m06 for monthly ( trend take 1 2 3.....and so on)and for weekly data 01/01/1990 to 09/06/1997.
View Articlegenerate trend between two date
Code:smpl 1990m1 1997m6series trend=@trend+@dtoo("1990m1")
View Articlegenerate trend between two date
error message: @dtoo is not genr or series expression function.
View Articlegenerate trend between two date
Code:smpl 1990m1 1997m6!offset = @dtoo("1990m1")series trend=@trend-!offset+1
View Articlegenerate trend between two date
it run but the othres value take NA value, i need thisfrom 1988m01 to 1989m12 take 0, from 1990m01 to 1997m06 take trendfrom 1997m07 to 2003m12 take 0.you understood me now.i have others case to...
View Articlegenerate trend between two date
series t = 0smpl 1990m01 1997m06t = @trend("1990m01")+1smpl @all
View Articlegenerate trend between two date
orCode:series t = @recode(@during("1990 1997m6"), @trend, 0)
View ArticleHow to calculate the number of month between two dates
Hi,I'm using EViews 9.A very simple one that I can't figure out...I'm working with monthly data. In my program, I need to calculate the number of months between two datesfor instance, if I've got this...
View Article