Search found 13315 matches

by EViews Gareth
Wed Apr 17, 2024 10:09 am
Forum: Data Manipulation
Topic: number of workdays
Replies: 3
Views: 68

Re: number of workdays

Create a series equal to @date on the daily page. Copy it over to the monthly page using "first" as the frequency conversion. Then copy it again using "last" as the frequency conversion. That will give you a series of the dates of the first workday and last weekday of each month.
by EViews Gareth
Wed Apr 17, 2024 7:32 am
Forum: Data Manipulation
Topic: number of workdays
Replies: 3
Views: 68

Re: number of workdays

I'd do it just by creating a temporary monthly page.

Code: Select all

wfcreate(page=daily) d5 2000 2024

pagecreate(page=monthly) m 2000 2024
series days = @daycount("Mon-Fri")
copy monthly\days daily\days
pageselect daily
by EViews Gareth
Wed Apr 10, 2024 10:55 am
Forum: Estimation
Topic: Ridge Estimation
Replies: 3
Views: 218

Re: Ridge Estimation

Where L1 is the sum of the absolute values, and L2 is the square root of the sum of the squares.
by EViews Gareth
Sun Apr 07, 2024 9:42 am
Forum: Programming
Topic: Bloomberg Querry Language (BQL) Fetch
Replies: 1
Views: 222

Re: Bloomberg Querry Language (BQL) Fetch

It is not currently supported by EViews.
by EViews Gareth
Fri Mar 29, 2024 8:54 am
Forum: Programming
Topic: Unable to open RTF file
Replies: 1
Views: 183

Re: Unable to open RTF file

Have you tried saving it to somewhere other than onedrive?
by EViews Gareth
Fri Mar 29, 2024 5:58 am
Forum: Add-in Support
Topic: Dowload series from DatastreamEDX uing EViews
Replies: 8
Views: 700

Re: Dowload series from DatastreamEDX uing EViews

Yes, but they wrote the EViews bit too :)
by EViews Gareth
Thu Mar 28, 2024 10:30 am
Forum: Estimation
Topic: STL Forecasting
Replies: 4
Views: 327

Re: STL Forecasting

I'm not sure I understand what you're asking, sorry. Are you asking how to do the seasonal forecast, or how EViews does it? If the latter, the Help section has details here: https://eviews.com/help/helpintro.html#page/content%2Fseries-Seasonal_Adjustment.html%23ww161272 (scroll down to the paragraph...
by EViews Gareth
Thu Mar 28, 2024 6:42 am
Forum: Estimation
Topic: STL Forecasting
Replies: 4
Views: 327

Re: STL Forecasting

EViews doesn't support forecasting from its STL routine as a built in feature.
by EViews Gareth
Tue Mar 26, 2024 2:50 pm
Forum: Data Manipulation
Topic: Problem with frequency conversion
Replies: 3
Views: 300

Re: Problem with frequency conversion

It sounds like you're pasting in the wrong place.
by EViews Gareth
Tue Mar 26, 2024 9:24 am
Forum: Data Manipulation
Topic: Problem with frequency conversion
Replies: 3
Views: 300

Re: Problem with frequency conversioin

What does "rewrite in monthly" mean?

Perhaps you could include some screenshots of what you're doing?
by EViews Gareth
Mon Mar 25, 2024 1:52 pm
Forum: Programming
Topic: Passing Variable to "R"
Replies: 5
Views: 233

Re: Passing Variable to "R"

Don't put it in braces.
by EViews Gareth
Mon Mar 25, 2024 11:19 am
Forum: Programming
Topic: Passing Variable to "R"
Replies: 5
Views: 233

Re: Passing Variable to "R"

If you have something like: %fcast_series = "X" xput {%fcast_series} xon fcst_series<-ts({%fcst_series}) xoff that will be passed into R as: fcast_series<-ts("x") which will cause the error because R is not expecting the quotes. So you'd need to use R to remove the quotes. Perhap...
by EViews Gareth
Mon Mar 25, 2024 10:57 am
Forum: Programming
Topic: Passing Variable to "R"
Replies: 5
Views: 233

Re: Passing Variable to "R"

Presumably you've already used XPUT to transfer the data across, and the issue is referencing that variable in R?

Go to advanced search