<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<atom:link href="https://forums.eviews.com/rss.php" rel="self" type="application/rss+xml"/> 
  <title>EViews</title>
  <link>https://forums.eviews.com</link>
  <description>EViews User Forum</description>
  <language>en</language>
  <managingEditor>forums@eviews.com (EViews.com)</managingEditor>  
   <generator>EViews.com</generator>
  <ttl>1</ttl>  

                                  <item>
                                  <title>copy(c=litmana) A\series01 without rho and @indicator?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22111#p72060</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>EViews will use an ML estimator to estimate rho, if it isn't supplied.&lt;br&gt;&lt;br /&gt;
An indicator series of a constant value of 1 is used if none is supplied.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;a href="https://eviews.com/help/helpintro.html#page/content%2FBasedata-Frequency_Conversion.html%23ww268576" class="postlink"&gt;https://eviews.com/help/helpintro.html# ... 23ww268576&lt;/a&gt;</description>
                                  <pubDate>Thu, 06 Aug 2026 23:27:31 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22111#p72060</guid>		   					
                                      </item>
                                  <item>
                                  <title>copy(c=litmana) A\series01 without rho and @indicator?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22111#p72059</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>In the Command Reference under copy and Frequency Conversion Options, we learnt that we can write something like &lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]copy(c=litmana, rho=0.7) A\series01 @indicator Q\indseries[/code]&lt;/code&gt;&lt;/div&gt; to copy a series using Litterman conversions. The documentation specifies that we &lt;strong&gt;must&lt;/strong&gt; specify an indicator series but doesn't say what value is used for rho if one doesn't specify it oneself. But EViews doesn't throw an error if we simply write &lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]copy(c=litmana) A\series01[/code]&lt;/code&gt;&lt;/div&gt; That is, without either an indicator series or a value for rho. But what happens in this latter case? I'm confused...</description>
                                  <pubDate>Thu, 06 Aug 2026 20:16:06 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22111#p72059</guid>		   					
                                      </item>
                                  <item>
                                  <title>Unexpected result with function @datediff</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22110#p72058</link>
                                  <dc:creator>mamo</dc:creator>
                                  <description>Many thanks, very clear!&lt;br&gt;&lt;br /&gt;
So in line with your reply, the following works as expected, i.e. lag1 = lag2&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
wfcreate dd 2000 2020&lt;br /&gt;
' create annual lag&lt;br /&gt;
series lag1=@datediff(@date, @dateadd(@date,1,"A"), "dd")&lt;br /&gt;
' crate lagged date series, lagged by one year&lt;br /&gt;
series dat=@date&lt;br /&gt;
' series date_lagged=@date(lag1)&lt;br /&gt;
series dat_lagged=dat(lag1)&lt;br /&gt;
' create 2nd lag, as day-difference between @date and lagged date series&lt;br /&gt;
' series lag2=@datediff(date_lagged, @date, "dd") &lt;br /&gt;
series lag2=@datediff(dat_lagged, dat, "dd") &lt;br /&gt;
' set sample to exclude NAs&lt;br /&gt;
smpl 2001 @last ' if @month=1 and @day=1&lt;br /&gt;
' define group with the two lag-series&lt;br /&gt;
group gr lag1 lag2&lt;br /&gt;
'  show the group and the difference between the two lage series&lt;br /&gt;
gr.sheet(c)&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Wed, 05 Aug 2026 11:35:06 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22110#p72058</guid>		   					
                                      </item>
                                  <item>
                                  <title>Unexpected result with function @datediff</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22110#p72057</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The confusion actually originates from the expression @date(lag1), not the @datediff function. "Dynamic" per-observation lags are only available for series (and perhaps some special cases I don't recall at the moment). Instead of raising an error, EViews is just using the first value of the lag1 series, -366, for all observations, so the expression is equivalent to @date(-366). No surprise then that series lag2 is full of -366.</description>
                                  <pubDate>Tue, 04 Aug 2026 20:35:58 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22110#p72057</guid>		   					
                                      </item>
                                  <item>
                                  <title>Unexpected result with function @datediff</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22110#p72056</link>
                                  <dc:creator>mamo</dc:creator>
                                  <description>Dear Eviews team,&lt;br&gt;&lt;br /&gt;
I am using Eviews 14, Jun 16 2026 build.&lt;br&gt;&lt;br /&gt;
I obtain an unexpected result with the function @datediff, see attached code. &lt;br&gt;&lt;br /&gt;
I would have expected the series lag1 and lag 2 to show identical values all over. In fact, that is the case only in  leap years&lt;br&gt;&lt;br /&gt;
Can you explain why the series lag1 and lag 2 do not have identical values in all years except in leap years?&lt;br&gt;&lt;br /&gt;
Best, mamo&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
wfcreate dd 2000 2020&lt;br /&gt;
' create annual lag&lt;br /&gt;
series lag1=@datediff(@date, @dateadd(@date,1,"A"), "dd")&lt;br /&gt;
' crate lagged date series, lagged by one year&lt;br /&gt;
series date_lagged=@date(lag1)&lt;br /&gt;
' create 2nd lag, as day-difference between @date and lagged date series&lt;br /&gt;
series lag2=@datediff(date_lagged, @date, "dd") &lt;br /&gt;
' set sample to exclude NAs&lt;br /&gt;
smpl 2001 @last ' if @month=1 and @day=1&lt;br /&gt;
' define group with the two lag-series&lt;br /&gt;
group gr lag1 lag2&lt;br /&gt;
'  show the group and the difference between the two lage series&lt;br /&gt;
gr.sheet(c)&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Tue, 04 Aug 2026 09:53:29 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22110#p72056</guid>		   					
                                      </item>
                                  <item>
                                  <title>Heteroskedasticity Test White</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=18&amp;t=17371#p72055</link>
                                  <dc:creator>redversjones</dc:creator>
                                  <description>Is there a way to directly save the result of a white test, such as the p-value of the F-test reported in the tables? this sort of stuff is always helpful for model governance and the like.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I'm aware that one could freeze the table and extract a particular cell but assuming there's a more robust and direct way of doing it based on how that cell is populated in the first place.</description>
                                  <pubDate>Mon, 03 Aug 2026 13:36:04 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=18&amp;t=17371#p72055</guid>		   					
                                      </item>
                                  <item>
                                  <title>What to do with the .prg_Snapshots folders and .evsettings files?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=21817#p72054</link>
                                  <dc:creator>uyanikcaner</dc:creator>
                                  <description>&lt;blockquote class="uncited"&gt;&lt;div&gt;&lt;br /&gt;
While there isn't an EViews command to automatically open a snapshot, you can do it programmatically.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
First, EViews snapshots are usually saved in the same folder as the base workfile/program.  The folder is hidden and the folder name just starts with the name of the base file followed by "_Snapshots".  For example, if you have a workfile named "simple.wf1", the snapshot folder name would be "simple.wf1_Snapshots".  &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Next, the snapshots in that folder are just copies of the original workfile/program.  The only difference is that each snapshot is prefixed with "snapshot_" (instead of the original base name) followed by the current date and time (local).  There's also a matching JSON text file for each snapshot that contains some metadata.  For our "simple.wf1" example, you might see:&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;snapshot_20260725_180156.json&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;snapshot_20260725_180156.wf1&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;
&lt;br /&gt;
Because snapshot_20260725_180156.wf1 file is just a regular workfile, you can open this using our WFOPEN command.  You just have to figure out the path.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Here's an example EViews Program that does this for a given folder and workfile name:&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]'==================================================================&lt;br /&gt;
' Find the most recent .wf1 file in "&lt;StaticName&gt;_Snapshots"&lt;br /&gt;
'==================================================================&lt;br /&gt;
&lt;br /&gt;
'--- 1. Inputs: set these as needed -------------------------------&lt;br /&gt;
%basepath    = "C:\files\"          ' folder that CONTAINS the snapshots folder&lt;br /&gt;
%staticname  = "simple.wf1"         ' your static file name (no extension needed)&lt;br /&gt;
&lt;br /&gt;
'--- 2. Build the snapshots subdirectory path ---------------------&lt;br /&gt;
%subdir      = %staticname + "_Snapshots"&lt;br /&gt;
%snapdir     = %basepath + %subdir&lt;br /&gt;
&lt;br /&gt;
'--- 3. Make sure the folder actually exists -----------------------&lt;br /&gt;
if @folderexist(%snapdir) = 0 then&lt;br /&gt;
    statusline Folder not found: {%snapdir}&lt;br /&gt;
    stop&lt;br /&gt;
endif&lt;br /&gt;
&lt;br /&gt;
'--- 4. Get the list of ALL files in that folder --------------------&lt;br /&gt;
%filelist = @wdir(%snapdir, "f")&lt;br /&gt;
!nfiles   = @wcount(%filelist)&lt;br /&gt;
&lt;br /&gt;
if !nfiles = 0 then&lt;br /&gt;
    statusline No files found in {%snapdir}&lt;br /&gt;
    stop&lt;br /&gt;
endif&lt;br /&gt;
&lt;br /&gt;
'--- 5. Walk the list, keeping only .wf1 files, track the "largest" name&lt;br /&gt;
%latest  = ""&lt;br /&gt;
!found   = 0&lt;br /&gt;
&lt;br /&gt;
for !i = 1 to !nfiles&lt;br /&gt;
    %candidate = @word(%filelist, !i)&lt;br /&gt;
    %ext       = @lower(@right(%candidate, 4))   ' last 4 chars, e.g. ".wf1"&lt;br /&gt;
&lt;br /&gt;
    if %ext = ".wf1" then&lt;br /&gt;
        !found = 1&lt;br /&gt;
        if %latest = "" then&lt;br /&gt;
            %latest = %candidate&lt;br /&gt;
        else&lt;br /&gt;
            if %candidate &gt; %latest then&lt;br /&gt;
                %latest = %candidate&lt;br /&gt;
            endif&lt;br /&gt;
        endif&lt;br /&gt;
    endif&lt;br /&gt;
next&lt;br /&gt;
&lt;br /&gt;
if !found = 0 then&lt;br /&gt;
    statusline No .wf1 files found in {%snapdir}&lt;br /&gt;
    stop&lt;br /&gt;
endif&lt;br /&gt;
&lt;br /&gt;
'--- 6. Report / use the result -------------------------------------&lt;br /&gt;
%latestpath = %snapdir + "\" + %latest&lt;br /&gt;
&lt;br /&gt;
'statusline Most recent .wf1 snapshot: {%latest}&lt;br /&gt;
'statusline Full path: {%latestpath}&lt;br /&gt;
&lt;br /&gt;
' Example of using it:&lt;br /&gt;
wfopen {%latestpath}&lt;br /&gt;
&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Steve&lt;br /&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Thank you Steve. It worked!</description>
                                  <pubDate>Thu, 30 Jul 2026 08:31:17 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=21817#p72054</guid>		   					
                                      </item>
                                  <item>
                                  <title>Fan chart in Stochastinc simulation</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22109#p72053</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
What steps are you following to create the fan charts?</description>
                                  <pubDate>Tue, 28 Jul 2026 17:49:13 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22109#p72053</guid>		   					
                                      </item>
                                  <item>
                                  <title>Fan chart in Stochastinc simulation</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22109#p72052</link>
                                  <dc:creator>paolo.zanghieri</dc:creator>
                                  <description>Good morning&lt;br&gt;&lt;br /&gt;
I am performing stochastic simulation with a small model. I noticed that if I do not add coefficient uncertainty I do not get the fan charts. Any clue? I am using Version 14 enterprise edition Mar 4 build&lt;br&gt;&lt;br /&gt;
thanks a lot</description>
                                  <pubDate>Tue, 28 Jul 2026 08:39:51 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22109#p72052</guid>		   					
                                      </item>
                                  <item>
                                  <title>What to do with the .prg_Snapshots folders and .evsettings files?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=21817#p72051</link>
                                  <dc:creator>EViews Steve</dc:creator>
                                  <description>While there isn't an EViews command to automatically open a snapshot, you can do it programmatically.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
First, EViews snapshots are usually saved in the same folder as the base workfile/program.  The folder is hidden and the folder name just starts with the name of the base file followed by "_Snapshots".  For example, if you have a workfile named "simple.wf1", the snapshot folder name would be "simple.wf1_Snapshots".  &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Next, the snapshots in that folder are just copies of the original workfile/program.  The only difference is that each snapshot is prefixed with "snapshot_" (instead of the original base name) followed by the current date and time (local).  There's also a matching JSON text file for each snapshot that contains some metadata.  For our "simple.wf1" example, you might see:&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;snapshot_20260725_180156.json&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;snapshot_20260725_180156.wf1&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;
&lt;br /&gt;
Because snapshot_20260725_180156.wf1 file is just a regular workfile, you can open this using our WFOPEN command.  You just have to figure out the path.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Here's an example EViews Program that does this for a given folder and workfile name:&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]'==================================================================&lt;br /&gt;
' Find the most recent .wf1 file in "&lt;StaticName&gt;_Snapshots"&lt;br /&gt;
'==================================================================&lt;br /&gt;
&lt;br /&gt;
'--- 1. Inputs: set these as needed -------------------------------&lt;br /&gt;
%basepath    = "C:\files\"          ' folder that CONTAINS the snapshots folder&lt;br /&gt;
%staticname  = "simple.wf1"         ' your static file name (no extension needed)&lt;br /&gt;
&lt;br /&gt;
'--- 2. Build the snapshots subdirectory path ---------------------&lt;br /&gt;
%subdir      = %staticname + "_Snapshots"&lt;br /&gt;
%snapdir     = %basepath + %subdir&lt;br /&gt;
&lt;br /&gt;
'--- 3. Make sure the folder actually exists -----------------------&lt;br /&gt;
if @folderexist(%snapdir) = 0 then&lt;br /&gt;
    statusline Folder not found: {%snapdir}&lt;br /&gt;
    stop&lt;br /&gt;
endif&lt;br /&gt;
&lt;br /&gt;
'--- 4. Get the list of ALL files in that folder --------------------&lt;br /&gt;
%filelist = @wdir(%snapdir, "f")&lt;br /&gt;
!nfiles   = @wcount(%filelist)&lt;br /&gt;
&lt;br /&gt;
if !nfiles = 0 then&lt;br /&gt;
    statusline No files found in {%snapdir}&lt;br /&gt;
    stop&lt;br /&gt;
endif&lt;br /&gt;
&lt;br /&gt;
'--- 5. Walk the list, keeping only .wf1 files, track the "largest" name&lt;br /&gt;
%latest  = ""&lt;br /&gt;
!found   = 0&lt;br /&gt;
&lt;br /&gt;
for !i = 1 to !nfiles&lt;br /&gt;
    %candidate = @word(%filelist, !i)&lt;br /&gt;
    %ext       = @lower(@right(%candidate, 4))   ' last 4 chars, e.g. ".wf1"&lt;br /&gt;
&lt;br /&gt;
    if %ext = ".wf1" then&lt;br /&gt;
        !found = 1&lt;br /&gt;
        if %latest = "" then&lt;br /&gt;
            %latest = %candidate&lt;br /&gt;
        else&lt;br /&gt;
            if %candidate &gt; %latest then&lt;br /&gt;
                %latest = %candidate&lt;br /&gt;
            endif&lt;br /&gt;
        endif&lt;br /&gt;
    endif&lt;br /&gt;
next&lt;br /&gt;
&lt;br /&gt;
if !found = 0 then&lt;br /&gt;
    statusline No .wf1 files found in {%snapdir}&lt;br /&gt;
    stop&lt;br /&gt;
endif&lt;br /&gt;
&lt;br /&gt;
'--- 6. Report / use the result -------------------------------------&lt;br /&gt;
%latestpath = %snapdir + "\" + %latest&lt;br /&gt;
&lt;br /&gt;
'statusline Most recent .wf1 snapshot: {%latest}&lt;br /&gt;
'statusline Full path: {%latestpath}&lt;br /&gt;
&lt;br /&gt;
' Example of using it:&lt;br /&gt;
wfopen {%latestpath}&lt;br /&gt;
&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Steve</description>
                                  <pubDate>Sun, 26 Jul 2026 01:33:34 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=21817#p72051</guid>		   					
                                      </item>
                                  <item>
                                  <title>Failed to initialize EViewsRConn.VariantRConn — COM Error 0x800706be at XOPEN(TYPE=R)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72050</link>
                                  <dc:creator>EViews Steve</dc:creator>
                                  <description>Some things to check:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
If you're not using R 64-bit, switch to that.  EViews 13 is a 64-bit only application and while talking to 32-bit R is possible, there are extra COM layers to make that happen which can cause complications.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Next, use a minimal R installation with just the packages you need.  This problem might be caused by a package that's already installed on your current R installation.  Since Gareth couldn't reproduce the issue, perhaps a new R installation will help.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Next, look at your Windows Task Manager to verify that you don't have orphaned instances of EViewsRConn.exe running in the background.  If you see these instances while EViews is shutdown, make sure you kill them before restarting EViews and trying again.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Finally, check your Windows R Path environment variables.  Ensure your system environment variables (PATH and R_HOME) point to the correct, active R installation directory.  If missing or pointing to different folders, add/update them and then restart EViews.</description>
                                  <pubDate>Fri, 24 Jul 2026 16:55:21 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72050</guid>		   					
                                      </item>
                                  <item>
                                  <title>Model targetting (via model.control) always delivers 0.01</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=10&amp;t=22108#p72049</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The value 0.01 is one of the possible fixed starting values used during the control procedure, so it sounds like the procedures is silently failing without any feedback as to why. You appear to be using the control procedure to adjust just a single series, which means you can use the older (pre-EViews 12) version of the control procedure as an alternative. Try adding the "legacy" option to the control procedure, e.g. model.control(legacy), and please share if EViews generates meaningful results.</description>
                                  <pubDate>Thu, 23 Jul 2026 17:28:44 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=10&amp;t=22108#p72049</guid>		   					
                                      </item>
                                  <item>
                                  <title>Failed to initialize EViewsRConn.VariantRConn — COM Error 0x800706be at XOPEN(TYPE=R)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72048</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Might want to update to the latest version.</description>
                                  <pubDate>Thu, 23 Jul 2026 15:36:28 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72048</guid>		   					
                                      </item>
                                  <item>
                                  <title>Failed to initialize EViewsRConn.VariantRConn — COM Error 0x800706be at XOPEN(TYPE=R)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72047</link>
                                  <dc:creator>benactonbond</dc:creator>
                                  <description>Thank you Gareth,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Enterprise Edition - Oct 11 2023 build</description>
                                  <pubDate>Thu, 23 Jul 2026 09:36:41 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72047</guid>		   					
                                      </item>
                                  <item>
                                  <title>Model targetting (via model.control) always delivers 0.01</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=10&amp;t=22108#p72046</link>
                                  <dc:creator>redversjones</dc:creator>
                                  <description>Hi, I have built a large macro model (around 60 regressions, 200 variables).&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Until now, users shock the outputs via uploading add-factor series in a control Excel file. I'm trying to introduce variable targetting as an alternative. I've been successful on a small dummy model (GDP as a function of exogenous potential + output gap AR(1) and unemployment as a function of exogenous NAIRU and Okun's law regression). But when trying to apply something similar via model.control to my main model the result is always precisely 0.01 for whichever variable I try and whatever time period/s and regardless of the target.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I have temporarily set all user-contorlled shocks =0 and there is no user control shock at all for the variable that I'm trying to target, just a blank Y_a series. &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I can't share the entire code on here (both commercially sensative and ~1000 lines) but am happy to seperately email an administrator with the code and associated files if helpful. Nonetheless, the most relevent part of the code is here:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
smpl @all&lt;br&gt;&lt;br /&gt;
series y_og_a 'create blank shocks series&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
'Shocks &lt;br&gt;&lt;br /&gt;
for %K [.............long list of regressions including y_og........]&lt;br&gt;&lt;br /&gt;
Model.append @ADD(V) {%K} {%K}_a&lt;br&gt;&lt;br /&gt;
next&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
'Section 6: Solving the model ----------------------------------------&lt;br&gt;&lt;br /&gt;
Model.exclude(actexist=t)&lt;br&gt;&lt;br /&gt;
model.solveopt(t=g)&lt;br&gt;&lt;br /&gt;
smpl 2020 2040&lt;br&gt;&lt;br /&gt;
model.solve 'originally this was the main solve with the user-defined shocks, currently all user-shocks set to zero to avoid clashes&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
smpl 2026q2 2028q4&lt;br&gt;&lt;br /&gt;
model.control y_og_a Y Y_target 'use output gap shock to set Y=Y_target for relevant period&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
smpl 2020 2040&lt;br&gt;&lt;br /&gt;
model.solve 'solve again using the above shocks.&lt;br&gt;&lt;br /&gt;
smpl @all&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
-------------------------------------&lt;br&gt;&lt;br /&gt;
N.B. also tried variations of doing model.control before the solve and only solving once. Idea of the two-stage solve was to try and solve first using user-shocks and then target, but for now I've abandoned that idea. I need actexist=t as the model won't solve with a jagged edge problem. &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Regardless of what I set the target to, or if I try targetting a different equation, (say unemployment via an Okun's law eq) it always delivers exactly 0.01 for the targetting periods. This occurs whether I use code or do it via model &gt; prod manually.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
thanks for any help and happy to share full code offline.</description>
                                  <pubDate>Wed, 22 Jul 2026 09:53:00 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=10&amp;t=22108#p72046</guid>		   					
                                      </item>
                                  <item>
                                  <title>Failed to initialize EViewsRConn.VariantRConn — COM Error 0x800706be at XOPEN(TYPE=R)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72045</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>I've been trying to replicate this, but can't.  I ran you reproducer many times over a couple of hours, and no issues.  &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Which version/build date of EViews are you using? (Help-&gt;About EViews)</description>
                                  <pubDate>Tue, 21 Jul 2026 16:14:43 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72045</guid>		   					
                                      </item>
                                  <item>
                                  <title>Failed to initialize EViewsRConn.VariantRConn — COM Error 0x800706be at XOPEN(TYPE=R)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72044</link>
                                  <dc:creator>benactonbond</dc:creator>
                                  <description>Hi all,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
We're hitting an intermittent error when driving R from EViews via xopen/xon/Xclose inside a program subroutine. The error is raised on a comment line, which is what makes it strange — R shouldn't be able to error on a comment in a healthy session.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Error message:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Error: attempt access index 0/0 in VECTOR_ELT in "# PRINT(R.VERSION.STRING)" &lt;br&gt;&lt;br /&gt;
in SUB_SS_UTILITY.PRG on line 354.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Minimal reproducer:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
comtimeout(0)&lt;br&gt;&lt;br /&gt;
xopen(type=r, case=upper)&lt;br&gt;&lt;br /&gt;
xon&lt;br&gt;&lt;br /&gt;
  library(base)&lt;br&gt;&lt;br /&gt;
  library(data.table)&lt;br&gt;&lt;br /&gt;
  library(zoo)&lt;br&gt;&lt;br /&gt;
  print(R.version.string)&lt;br&gt;&lt;br /&gt;
  print(.libPaths())&lt;br&gt;&lt;br /&gt;
xoff&lt;br&gt;&lt;br /&gt;
Xclose&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The identical code sometimes passes and sometimes fails within minutes of each other — the only thing varying is the R session state.&lt;br&gt;&lt;br /&gt;
The first R call in a fresh EViews session tends to succeed; a second call in the same session fails with the same VECTOR_ELT error, suggesting Xclose isn't fully tearing down the R session and subsequent calls inherit dirty state.&lt;br&gt;&lt;br /&gt;
Cold-restarting EViews and killing any leftover RConn*.exe / Rterm.exe / Rscript.exe / Rgui.exe processes clears it.&lt;br&gt;&lt;br /&gt;
Forcing a clean environment at the top of the xon…xoff block (rm(list = ls(envir = .GlobalEnv), envir = .GlobalEnv) then gc()) before any library() call appears to prevent it.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The VECTOR_ELT text looks like a C-level error, i.e. R's internal structures becoming inconsistent across repeated xopen/Xclose cycles.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Is this a known issue with the R connection not being fully reset between xopen/Xclose cycles in the same EViews session?&lt;br&gt;&lt;br /&gt;
Is there a recommended way to guarantee a clean R session per xopen, short of restarting EViews?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Our setup is working with EViews 13 and R version 4.6.1&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks, Ben</description>
                                  <pubDate>Tue, 21 Jul 2026 13:22:55 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22107#p72044</guid>		   					
                                      </item>
                                  <item>
                                  <title>What to do with the .prg_Snapshots folders and .evsettings files?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=21817#p72043</link>
                                  <dc:creator>uyanikcaner</dc:creator>
                                  <description>Is there any way to open the last saved snapshot of a workfile using an Eviews code? Do we have to click view-&gt;snapshots-&gt;open or -&gt;revert to every time? Do you have any future plans for this?</description>
                                  <pubDate>Fri, 17 Jul 2026 12:09:50 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=21817#p72043</guid>		   					
                                      </item>
                                  <item>
                                  <title>EViews 14: Mixed graph option bug?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22106#p72042</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Just tried it - no crash.  What's the workfile spec?</description>
                                  <pubDate>Wed, 08 Jul 2026 18:18:16 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22106#p72042</guid>		   					
                                      </item>
                                  <item>
                                  <title>EViews 14: Mixed graph option bug?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22106#p72041</link>
                                  <dc:creator>vm1066</dc:creator>
                                  <description>Hi, &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I am trying to create a fan chart by using the mixed graph option, setting the mean series to be a line and the quantiles to be bands. An example code: &lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]series a = @trend&lt;br /&gt;
series b = @trend-1&lt;br /&gt;
series x = @trend+1&lt;br /&gt;
series f = @trend-.5&lt;br /&gt;
series e = @trend+.5&lt;br /&gt;
&lt;br /&gt;
group g a b x f e&lt;br /&gt;
&lt;br /&gt;
g.mixed(panel=combine) line(1) band(2,3) band(4,5) [/code]&lt;/code&gt;&lt;/div&gt; &lt;br&gt;&lt;br /&gt;
Any reason why running this code causes the application to crash? Have I specified it incorrectly or is this a bug? &lt;br&gt;&lt;br /&gt;
FYI - currently using June 16, 26 build&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks in advance for the help!</description>
                                  <pubDate>Wed, 08 Jul 2026 16:19:04 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22106#p72041</guid>		   					
                                      </item>
                                  <item>
                                  <title>EViews 14: stochastic simulations with linked vs unlinked equations</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72040</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Your understanding appears to be correct. You can use the 'rndseed' command to set the internal state of EViews' random number generators and create reproducible simulations. As an aside, be aware that the order in which equations are specified in the model may still interact with the fixed random number sequence to produce different results, so you cannot freely permute the list of equations and expect identical results. Reproducibility is contingent on an identical specification (that criterion is actually overly strict, but it's simple to state).</description>
                                  <pubDate>Tue, 07 Jul 2026 16:43:13 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72040</guid>		   					
                                      </item>
                                  <item>
                                  <title>EViews 14: stochastic simulations with linked vs unlinked equations</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72039</link>
                                  <dc:creator>vm1066</dc:creator>
                                  <description>Hi Matt,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks for the quick response—it has been very helpful.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I'm interested in using bootstrapped innovations because my model contains a mix of linear and nonlinear equations. Based on your explanation, I do not need to load the equations as linked objects to perform stochastic simulations i.e. I should be able to work directly with the text-based equations without specifying standard deviations.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I wanted to confirm my understanding that, if I rerun the stochastic simulation, the only reason the results would differ is that EViews draws a different set of bootstrapped innovations each time the program is executed. For the sake of reproducibility, is there a way to set a random seed (or an equivalent option) so that the simulation produces identical results each time I run the program?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks again for your help.</description>
                                  <pubDate>Tue, 07 Jul 2026 13:37:50 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72039</guid>		   					
                                      </item>
                                  <item>
                                  <title>EViews 14: stochastic simulations with linked vs unlinked equations</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72038</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Plenty to answer here...&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="uncited"&gt;&lt;div&gt;&lt;br /&gt;
1. If I use linked equation objects in the model, they are automatically loaded in as stochastic objects with specific standard deviation&lt;br&gt;&lt;br /&gt;
2. If I use the equation representation which provides substituted coefficients and load in into the model as text, it loads in the equation as stochastic by default but standard deviation is initially set to NA. I can then use model.innov to specify standard deviations for each equation.&lt;br&gt;&lt;br /&gt;
If I ensure standard deviations are set to same value across both the above versions of the model, will I get the same results while performing stochastic simulations?&lt;br /&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Yes, but only when using the default "Normal random numbers" innovation generation method. When using bootstrapped innovations, the equation innovation variances are ignored.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="uncited"&gt;&lt;div&gt;&lt;br /&gt;
I wanted to see if it is possible to select the equations from which innovations are drawn. For instance, I would like to see simulation results for the entire system by incorporating uncertainty only in one equation. Can I use model.innov in this respect (perhaps by setting a stochastic eqn to be an identity instead)?&lt;br /&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Yes. You can control which equations include uncertainty by flagging them as identities or not.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="uncited"&gt;&lt;div&gt;&lt;br /&gt;
1. I get a message saying 'x residuals per equation calculated for bootstrap'. Is there a way to see/graph these residuals? On what basis is the number of residuals calculated?&lt;br /&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
EViews doesn't provide any direct access to the pool of bootstrapped innovations. However, the pool will just be the equations' residuals taken from a specific sample. That bootstrap sample is either:&lt;br /&gt;
&lt;ol style="list-style-type:decimal"&gt;&lt;br /&gt;
&lt;li&gt; The explicit bootstrap sample provided as part of the solve specification (on the "Stoch. Options" dialog page or via the 's' option to the 'stochastic' procedure), or...&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; All observations preceding the solution sample (which may default to the workfile sample) so long as there are at least 10 such observations, otherwise...&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; All observations.&lt;/li&gt;&lt;br /&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="uncited"&gt;&lt;div&gt;&lt;br /&gt;
2. Once simulation is complete, is it possible to extract values for a specific endogenous variable for all its 1000 simulations?&lt;br /&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
You can specify that the solve operation should record data for all stochastic variables' repetitions to a separate workfile page. From there you can examine any variable of interest.</description>
                                  <pubDate>Mon, 06 Jul 2026 21:45:05 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72038</guid>		   					
                                      </item>
                                  <item>
                                  <title>EViews 14: stochastic simulations with linked vs unlinked equations</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72037</link>
                                  <dc:creator>vm1066</dc:creator>
                                  <description>Hi,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I had questions regarding stochastic simulations with bootstrapped innovations in EViews 14.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Firstly, on the model set-up:&lt;br&gt;&lt;br /&gt;
I am thinking of experimenting with two versions of loading equations into the model.&lt;br&gt;&lt;br /&gt;
1. If I use linked equation objects in the model, they are automatically loaded in as stochastic objects with specific standard deviation&lt;br&gt;&lt;br /&gt;
2. If I use the equation representation which provides substituted coefficients and load in into the model as text, it loads in the equation as stochastic by default but standard deviation is initially set to NA. I can then use model.innov to specify standard deviations for each equation.&lt;br&gt;&lt;br /&gt;
If I ensure standard deviations are set to same value across both the above versions of the model, will I get the same results while performing stochastic simulations?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Secondly, on the stochastic simulation options:&lt;br&gt;&lt;br /&gt;
I wanted to see if it is possible to select the equations from which innovations are drawn. For instance, I would like to see simulation results for the entire system by incorporating uncertainty only in one equation. Can I use model.innov in this respect (perhaps by setting a stochastic eqn to be an identity instead)?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Finally, with regards to simulation output:&lt;br&gt;&lt;br /&gt;
1. I get a message saying 'x residuals per equation calculated for bootstrap'. Is there a way to see/graph these residuals? On what basis is the number of residuals calculated?&lt;br&gt;&lt;br /&gt;
2. Once simulation is complete, is it possible to extract values for a specific endogenous variable for all its 1000 simulations?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks in advance for the help.</description>
                                  <pubDate>Fri, 03 Jul 2026 10:54:59 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=10&amp;t=22105#p72037</guid>		   					
                                      </item>
                                  <item>
                                  <title>MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72035</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Great for umidas type stuff!</description>
                                  <pubDate>Fri, 26 Jun 2026 14:21:33 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72035</guid>		   					
                                      </item>
                                  <item>
                                  <title>MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72034</link>
                                  <dc:creator>random_user</dc:creator>
                                  <description>thank you!&lt;br&gt;&lt;br /&gt;
incidentally, wasn't aware of c=split, that's pretty useful.</description>
                                  <pubDate>Fri, 26 Jun 2026 13:40:05 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72034</guid>		   					
                                      </item>
                                  <item>
                                  <title>Tables with empty cells: unexpected results from a loop search for a string</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22103#p72033</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
You're correct that comparisons with the empty string can be a bit unintuitive (we actually had this discussion &lt;a href="https://forums.eviews.com/viewtopic.php?t=17912" class="postlink"&gt;9 years ago&lt;/a&gt;  &lt;img class="smilies" src="https://forums.eviews.com/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"&gt;). Your basic comparison expression, tab(!i,1) &lt;&gt; "c", is one in which an empty table cell will be treated as a missing value rather than an empty string, and thus the result of the comparison is not what you expect. Your extended comparison expression, tab(!i,1) &lt;&gt; "c" or tab(!i,1)="", adds a test in which an empty table cell will be treated as an empty string. Alternatively, you could have written: tab(!i,1) &lt;&gt; "c" or @isempty(tab(!i,1)). The moral of the story is, because empty strings serve double duty as representing both empty strings and missing values in EViews, extra attention must be paid to how they're involved in comparisons.</description>
                                  <pubDate>Thu, 25 Jun 2026 18:13:15 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22103#p72033</guid>		   					
                                      </item>
                                  <item>
                                  <title>function @rinstr not working properly</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22102#p72032</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The @rinstr function is behaving as intended. While the @rinstr function performs a right-to-left search for a matching substring, in contrast to @instr's left-to-right search, both functions return a character location for the match, which is numbered left-to-right starting at 1. The search orders are different, but the results are presented in the same coordinate system.</description>
                                  <pubDate>Thu, 25 Jun 2026 17:53:44 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22102#p72032</guid>		   					
                                      </item>
                                  <item>
                                  <title>Welcome to the Add-in Support forum.</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=23&amp;t=2122#p72031</link>
                                  <dc:creator>adrangi</dc:creator>
                                  <description>Hi, I have seen a Youtube using quantile-on-quantile regression add-in.  The original add-in work can be reached at the following link.   I can't find this add-in anywhere to be able t use in My WV 14.  &lt;a href="https://drive.google.com/file/d/1QTGDqW00qz9RSJNl_4-ZvKl4XofHlOwH/view" class="postlink"&gt;https://drive.google.com/file/d/1QTGDqW ... HlOwH/view&lt;/a&gt;.  Any help is appreciated.  Thanks.  Best, Bahram</description>
                                  <pubDate>Thu, 25 Jun 2026 15:18:39 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=23&amp;t=2122#p72031</guid>		   					
                                      </item>
                                  <item>
                                  <title>Tables with empty cells: unexpected results from a loop search for a string</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22103#p72030</link>
                                  <dc:creator>mamo</dc:creator>
                                  <description>Using Eviews 14 Dec 26 2024 build&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Tables with empty cells behave unexpectedly in a loop search for a string.&lt;br&gt;&lt;br /&gt;
The search would unexpectedly stop once the loop reaches an empty cell, see code below.&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
wfcreate u 1&lt;br /&gt;
' create table with four rows and one column&lt;br /&gt;
table(4,1) tab&lt;br /&gt;
' Filling the table, but leaving the 2nd row empty &lt;br /&gt;
tab(1,1)="a"&lt;br /&gt;
tab(3,1)="c"&lt;br /&gt;
tab(4,1)="d"&lt;br /&gt;
&lt;br /&gt;
!nrows=tab.@rows&lt;br /&gt;
&lt;br /&gt;
' Loop stops unexpectedly when the empty 2nd row is reached, and !i ends up with 2 rather than 3.&lt;br /&gt;
!i=1&lt;br /&gt;
while tab(!i,1) &lt;&gt; "c" and !i&lt;!nrows&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;!i=!i+1&lt;br /&gt;
wend&lt;br /&gt;
scalar i1=!i&lt;br /&gt;
show i1&lt;br /&gt;
&lt;br /&gt;
 ' Work around which lets !i end up with the correct result 3 &lt;br /&gt;
!i=1&lt;br /&gt;
while tab(!i,1) &lt;&gt; "c" or tab(!i,1)="" and !i&lt;!nrows&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;!i=!i+1&lt;br /&gt;
wend&lt;br /&gt;
scalar i2=!i&lt;br /&gt;
show i2&lt;br /&gt;
&lt;br /&gt;
' Filling the second row...&lt;br /&gt;
tab(2,1)="b"&lt;br /&gt;
' .. lets !i end up correctly with 3&lt;br /&gt;
!i=1&lt;br /&gt;
while tab(!i,1) &lt;&gt; "c" and !i&lt;!nrows&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;!i=!i+1&lt;br /&gt;
wend&lt;br /&gt;
scalar i3=!i&lt;br /&gt;
show i3&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Thu, 25 Jun 2026 11:41:35 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22103#p72030</guid>		   					
                                      </item>
                                  <item>
                                  <title>function @rinstr not working properly</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22102#p72029</link>
                                  <dc:creator>mamo</dc:creator>
                                  <description>I use Eviews 14 Dec26 2024 build&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The function @rinstr does not work as described in the help documentation which says: &lt;blockquote class="uncited"&gt;&lt;div&gt;Starting at the end of the string and searching in reverse, finds the starting position of the target string str2 in the string str1. By default, the function returns the location of the last (first from the end) instance of str2 in str1, but you may provide the optional integer n to change the occurrence. &lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Proof:&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
!i=@rinstr("987654321", "8")&lt;br /&gt;
Stautsline !i&lt;br /&gt;
' gives !i=2, rather than !i=8&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
So it seems @rinstr works in the same way as @instr, counting from left to the right.</description>
                                  <pubDate>Thu, 25 Jun 2026 11:13:46 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22102#p72029</guid>		   					
                                      </item>
                                  <item>
                                  <title>MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72028</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Yep, definitely a bug.  We'll fix.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Just if you're interested, here's some code that makes it concrete.&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]close @wf&lt;br /&gt;
wfcreate(page=q) q 1990 2030&lt;br /&gt;
series y=nrnd&lt;br /&gt;
pagecreate(page=m) m 1990 2030&lt;br /&gt;
series x=nrnd&lt;br /&gt;
&lt;br /&gt;
pageselect q&lt;br /&gt;
copy(c=split) m\x *&lt;br /&gt;
smpl 1990 2020 2023 2030&lt;br /&gt;
equation eq1.midas(midwgt=umidas, fixedlag=3) y c @ m\x&lt;br /&gt;
equation eq2.ls y c x_3 x_2 x_1&lt;br /&gt;
&lt;br /&gt;
show eq1&lt;br /&gt;
show eq2[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Wed, 24 Jun 2026 19:40:57 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72028</guid>		   					
                                      </item>
                                  <item>
                                  <title>MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72027</link>
                                  <dc:creator>random_user</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
Not a huge bug, but probably worth fixing.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
EViews version: 14 (April 22 build)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
When I use MIDAS, if I set the sample with a gap in the middle, for example 2010Q3–2026Q1 excluding 2020Q1 to 2022Q2 (pandemic), I noticed the R-squared can turn negative. In the regression I was testing, I was getting an R-squared of -0.507 for example... which makes no sense.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Estimation results:&lt;br&gt;&lt;br /&gt;
Run A — sample 2010Q3-26Q1 excluding pandemic:&lt;br&gt;&lt;br /&gt;
  Included observations: 53 after adjustments&lt;br&gt;&lt;br /&gt;
  R-squared            -0.507030    Mean dependent var   0.011627&lt;br&gt;&lt;br /&gt;
  Adjusted R-squared   -0.987998    S.D. dependent var   0.106052&lt;br&gt;&lt;br /&gt;
  S.E. of regression    0.149530    Sum squared resid    1.050879&lt;br&gt;&lt;br /&gt;
  (C and 5 lag coefficients estimated on 53 obs)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Run B — full sample 2010Q3-2026Q1, no exclusions:&lt;br&gt;&lt;br /&gt;
  Included observations: 63 after adjustments&lt;br&gt;&lt;br /&gt;
  R-squared             0.660304    Mean dependent var   0.011627&lt;br&gt;&lt;br /&gt;
  Adjusted R-squared    0.630506    S.D. dependent var   0.106052&lt;br&gt;&lt;br /&gt;
  S.E. of regression    0.064465    Sum squared resid    0.236876&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
As you can see, the mean dependent variable (0.011627) and S.D. of dependent variable (0.106052) are identical in both runs. So, my pandemic period exclusion is being ignored when it comes to calculating these fit stats. &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Similar, the SSR in Run A (1.0509) is clearly being summed over all 63 quarters, including the excluded ones, even though only 53 were used to fit the coefficients. And this is resulting in a negative R-squared.</description>
                                  <pubDate>Wed, 24 Jun 2026 18:37:39 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22101#p72027</guid>		   					
                                      </item>
                                  <item>
                                  <title>Merging datasets</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72026</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>A long overdue thanks, Gareth! Your code takes my handling of the one-to-many case where the key is copied onto the data almost all the way to a quarterly dated page. The final step is fairly simple :-)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Now, I'm wondering about the many-to-one case where the data is instead copied onto the key to arrive at the same result. Is that possible in EViews?</description>
                                  <pubDate>Fri, 19 Jun 2026 05:42:54 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72026</guid>		   					
                                      </item>
                                  <item>
                                  <title>stom / stomna on a large balanced panel hangs indefinitely in EViews 14 (instant in EViews 12)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22099#p72025</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Patch is out.</description>
                                  <pubDate>Wed, 17 Jun 2026 17:07:24 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22099#p72025</guid>		   					
                                      </item>
                                  <item>
                                  <title>Vector Smooth Transition Error Correction Model (VSTECM)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22100#p72024</link>
                                  <dc:creator>remuct</dc:creator>
                                  <description>Hi, &lt;br&gt;&lt;br /&gt;
I need to estimate a system of error correction models embedding smooth transition-type non-linearities, namely a vector smooth transition error correction model (VSTECM). Eviews provides a built-in vector error correction (VEC) procedure. Can I use VEC and specify in each equation a non-linear error correction mechanism where the parameter of the error correction term is modulated by a smooth transition function, such as a logistic or expontential function? In other words, can I combine VEC with nonlinear transition functions? &lt;br&gt;&lt;br /&gt;
Alternatively, is a VSTECM available as an add-in ? This would obviously be my preferred option. If not, any advice would be greatly appreciated.  &lt;br&gt;&lt;br /&gt;
Many thanks.</description>
                                  <pubDate>Tue, 09 Jun 2026 23:32:47 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22100#p72024</guid>		   					
                                      </item>
                                  <item>
                                  <title>stom / stomna on a large balanced panel hangs indefinitely in EViews 14 (instant in EViews 12)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22099#p72023</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
You're correct, a severe performance loss issue is present in the stom/stomna commands for the recent versions of EViews. The next patch for EViews 14 will restore the commands' performance.</description>
                                  <pubDate>Tue, 09 Jun 2026 20:48:43 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22099#p72023</guid>		   					
                                      </item>
                                  <item>
                                  <title>stom / stomna on a large balanced panel hangs indefinitely in EViews 14 (instant in EViews 12)</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22099#p72022</link>
                                  <dc:creator>JMviews</dc:creator>
                                  <description>Hi,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I think I've hit a performance regression in series-to-matrix conversion (stom / stomna) between EViews 12 and EViews 14.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I run a model stochastic solve and save the successful repetitions to a new page (the p= option on Model::stochastic). That creates a balanced panel page: 70,000 cross-sections (repetitions) x 20 quarters = 1,400,000 observations. Each tracked endogenous variable is an ordinary numeric series in that page, with valid data.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
A single line:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
stom(timeseries, target)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
never returns. EViews goes to "Not Responding", the busy spinner stays up no error and no crash for hours. The identical operation on the identical data completes in well under a minute in EViews 12.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Is this a known regression in 13/14? I couldn't find any mention of stom/stomna in the 13 or 14 patch notes.&lt;br&gt;&lt;br /&gt;
Is the slowdown specific to converting a panel-structured series - i.e. is unstructuring the page first the recommended workaround, or is there a better way to pull a 20 x 70,000 matrix out of a balanced-panel page?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks.</description>
                                  <pubDate>Fri, 05 Jun 2026 08:47:45 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22099#p72022</guid>		   					
                                      </item>
                                  <item>
                                  <title>Suggestions for my model</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=18&amp;t=22097#p72020</link>
                                  <dc:creator>startz</dc:creator>
                                  <description>You've done a very nice job so far and your questions are well-put. Here are a few thoughts.&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="uncited"&gt;&lt;div&gt;ΔCultivatedArea is included strictly as a control variable to prevent the drought coefficient from absorbing the effect of physical land changes, not as a variable of independent interest. &lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
You may want to think about whether droughts &lt;em&gt;cause &lt;/em&gt;land to be withdrawn from cultivation. If so, you may want to rethink whether you want to control for the area cultivated. You do speak to this a bit at the end of your post, so maybe it isn't very important.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Your evidence suggests that autocorrelation is not very important. But it's easy to add AR(1) to the regression and see if your results are sensitive.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Why would you care about multicollinearity? Multicollinearity doesn't invalidate any of the regression results.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Normality is not very important. It matters a bit for the statistical tests when you only have 26 observations, but there's not a whole lot to be done about it.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
One thing you might want to do if you haven't already is to do a scatterplot of production against drought conditions to see if there is any visual indications of a nonlinear relation.</description>
                                  <pubDate>Tue, 02 Jun 2026 17:36:11 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=18&amp;t=22097#p72020</guid>		   					
                                      </item>
                                  <item>
                                  <title>Suggestions for my model</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=18&amp;t=22097#p72019</link>
                                  <dc:creator>Agorhus</dc:creator>
                                  <description>Hi everyone, I am an undergraduate economics student working on this model, I am posting here not just to get answers, but genuinely to learn and test my own understanding of the methodology I applied. Any feedback, criticism, or suggestions are welcome.I want to understand where I might be wrong. The primary objective of this model is to isolate and quantify the effect of meteorological drought, measured by the SPEI_7 index, on annual barley production. ΔCultivatedArea is included strictly as a control variable to prevent the drought coefficient from absorbing the effect of physical land changes, not as a variable of independent interest&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Here is my setup&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Model: &lt;strong&gt;Production_t = β0 + β1SPEI7_t + β2ΔCultivatedAreat + ε_t &lt;/strong&gt;&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
(n=26).(due to differencing)&lt;br&gt;&lt;br /&gt;
t=year &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Where:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
    PRODUCTION: Annual barley production (tonnes)&lt;br&gt;&lt;br /&gt;
    SPEI_7: 7-month SPEI index for August&lt;br&gt;&lt;br /&gt;
    ΔCultivatedArea: First difference of barley cultivated area&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Steps followed:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
    &lt;strong&gt;ADF unit root tests&lt;/strong&gt; (intercept for PRODUCTION and SPEI_7; intercept+trend for CultivatedArea due to visible deterministic trend)&lt;br&gt;&lt;br /&gt;
    First-differenced CultivatedArea to achieve stationarity&lt;br&gt;&lt;br /&gt;
    &lt;strong&gt;Pearson correlation matrix to check multicollinearity&lt;/strong&gt; (r = -0.081 between SPEI_7 and ΔCultivatedArea)&lt;br&gt;&lt;br /&gt;
    OLS estimation&lt;br&gt;&lt;br /&gt;
    &lt;strong&gt;Breusch-Godfrey test&lt;/strong&gt; for autocorrelation (lag=1)&lt;br&gt;&lt;br /&gt;
    &lt;strong&gt;Breusch-Pagan-Godfrey test&lt;/strong&gt; for heteroskedasticity&lt;br&gt;&lt;br /&gt;
    &lt;strong&gt;Jarque-Bera and Shapiro-Wilk tests&lt;/strong&gt; for normality of residuals&lt;br&gt;&lt;br /&gt;
 &lt;strong&gt;   Ramsey RESET test &lt;/strong&gt;for functional form (F p=0.8856)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Results:&lt;br&gt;&lt;br /&gt;
SPEI_7: β=874,320, p=0.0021 (significant at 1%)&lt;br&gt;&lt;br /&gt;
ΔCultivatedArea: β=1.983, p=0.0188 (significant at 5%)&lt;br&gt;&lt;br /&gt;
R²=0.453, Adjusted R²=0.401, F p=0.0014&lt;br&gt;&lt;br /&gt;
All diagnostic tests passed (no autocorrelation, no heteroskedasticity, normality satisfied, correct functional form&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;strong&gt;MY QUESTIONS:&lt;/strong&gt;&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Two of the diagnostic tests produced borderline results that I would like to highlight:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
1. Breusch-Godfrey Test (Autocorrelation)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
    Chi-Square p = 0.0691&lt;br&gt;&lt;br /&gt;
    F p = 0.0874&lt;br&gt;&lt;br /&gt;
    Both values exceed the 0.05 threshold, so the null hypothesis of no autocorrelation cannot be rejected. However, the margin is relatively narrow. I am wondering whether this should be a concern or whether it is simply a consequence of the small sample size (n=26).&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
2. Shapiro-Wilk Test (Normality of Residuals)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
    p = 0.0532&lt;br&gt;&lt;br /&gt;
    The null hypothesis of normality cannot be rejected, but the result is marginally above the critical value. Again, I suspect this may be related to the limited number of observations.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
With only n=26 observations, ADF unit root tests are known to have low power. Is there a more appropriate test for this sample, and should I run both for robustness?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
While I argue that SPEI_7 is strictly exogenous, the same argument does not hold for ΔCultivatedArea, as annual planting decisions may be correlated with omitted socioeconomic variables such as input costs or government subsidies. However, since the correlation between SPEI_7 and ΔCultivatedArea is negligible (r=-0.081, p=0.73), I argue that even if the ΔCultivatedArea coefficient is biased, this does not contaminate the SPEI7 estimate. Is this reasoning valid, or should I be more concerned about the potential endogeneity of ΔCultivatedArea?</description>
                                  <pubDate>Tue, 02 Jun 2026 13:39:22 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=18&amp;t=22097#p72019</guid>		   					
                                      </item>
                                  <item>
                                  <title>PNG graph.save(t=png,d=300) exports at ~96 DPI metadata, not 300 DPI</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22092#p72018</link>
                                  <dc:creator>EViews Matt</dc:creator>
                                  <description>Hello,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
You're correct that the DPI information wasn't being recorded correctly. The next patch to EViews 14 will include a fix for this issue.</description>
                                  <pubDate>Mon, 01 Jun 2026 23:23:56 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22092#p72018</guid>		   					
                                      </item>
                                  <item>
                                  <title>Merging datasets</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72017</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Here's a stab.&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]mode quiet&lt;br /&gt;
close @all&lt;br /&gt;
import(page=key) .\key.txt @freq u 1&lt;br /&gt;
%name = @wright(@wlookup("*"), 1)&lt;br /&gt;
rename {%name} name&lt;br /&gt;
%name = "name"&lt;br /&gt;
rename series* key*&lt;br /&gt;
%keys = @wlookup("key*")&lt;br /&gt;
&lt;br /&gt;
%objects = @wdelim( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@wreplace( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"vintage year " + %keys + " " + "value01 value02 value03 value04", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"*", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"""*""" _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;), _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" ", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"," _&lt;br /&gt;
)&lt;br /&gt;
pageload(page=data) .\data.txt nonames names=({%objects})&lt;br /&gt;
&lt;br /&gt;
'attempt0&lt;br /&gt;
d vintage&lt;br /&gt;
copy(nacat) key\name data\name @src key01 key02 @dest key01 key02&lt;br /&gt;
pagestack value? &lt;br /&gt;
series date = @dateval(@str(year)+"Q"+var01)&lt;br /&gt;
d id01 key var01 year&lt;br /&gt;
pageunstack name date&lt;br /&gt;
d value name&lt;br /&gt;
rename value* *[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Mon, 01 Jun 2026 07:50:05 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72017</guid>		   					
                                      </item>
                                  <item>
                                  <title>Simple pageunstack gone wrong</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72016</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Yeah, that’s not a bad way to do it.</description>
                                  <pubDate>Sat, 30 May 2026 13:00:05 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72016</guid>		   					
                                      </item>
                                  <item>
                                  <title>Merging datasets</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72015</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>I think that I have the second case sorted with the code that I posted. But the first case still eludes me.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
In the end I want to create a quarterly dated page with a range from 1993Q1 to 1997Q4 with the series &lt;em&gt;name_a&lt;/em&gt;, ..., &lt;em&gt;name_i&lt;/em&gt;. The quarterly values for each series is in the four last columns of data.txt. The first column in data.txt is irrelevant. The second column is the year. If the third and fourth columns in data.txt match the first and second column in key.txt, then the resulting series should pick its name from the third column of key.txt.</description>
                                  <pubDate>Sat, 30 May 2026 09:29:42 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72015</guid>		   					
                                      </item>
                                  <item>
                                  <title>Simple pageunstack gone wrong</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72014</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>And then loop over the pool &lt;em&gt;name&lt;/em&gt; and create the missing series? Something like this:&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]pageload .\test.txt&lt;br /&gt;
pageunstack name dateid @ value&lt;br /&gt;
if @isempty(@wlookup("value", "group")) then&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%crossids = name.@crossids&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for %crossid {%crossids}&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;copy value value{%crossid}&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;next&lt;br /&gt;
endif&lt;br /&gt;
delete name value dateid&lt;br /&gt;
rename value* *[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Sat, 30 May 2026 09:17:54 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72014</guid>		   					
                                      </item>
                                  <item>
                                  <title>Simple pageunstack gone wrong</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72013</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>The issue is that because there is no between cross-section variation (a and b are identical), when you stack, EViews does the "smart" thing in realising you don't need two different value series, so it condenses down to a single series, called value.  Then when you do the tidyup step, you delete it.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Really the only way around this is to test whether there are any series called VALUE[X] before doing the tidyup.</description>
                                  <pubDate>Sat, 30 May 2026 06:17:23 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72013</guid>		   					
                                      </item>
                                  <item>
                                  <title>Merging datasets</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72012</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Are you still having issues with the first case (or the second)?  I took a look, but think I need more information on what you're trying to do.  I put a stop right before your "attempt 1", just to load the two pages and do the renames.  But after that I can't see what you're trying to accomplish - how you match the series/ids etc....   Could you describe more?</description>
                                  <pubDate>Sat, 30 May 2026 06:08:38 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72012</guid>		   					
                                      </item>
                                  <item>
                                  <title>Simple pageunstack gone wrong</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72011</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>I want to import the attached (minimal) text files and unstack them into dated pages with two series: &lt;em&gt;a&lt;/em&gt; and &lt;em&gt;b&lt;/em&gt;. The text files differ with respect to the value column. The first file (test.txt) has variation in both the name and time dimension (i.e. all unique values), the second (test2.txt) has variation in the name dimension and the third (test3.txt) has variation in the time dimension.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;strong&gt;test.txt&lt;/strong&gt;&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;period&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;value&lt;br /&gt;
a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;br /&gt;
a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&lt;br /&gt;
b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&lt;br /&gt;
b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;test2.txt&lt;/strong&gt;&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;period&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;value&lt;br /&gt;
a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;br /&gt;
a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;br /&gt;
b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&lt;br /&gt;
b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;test3.txt&lt;/strong&gt;&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;period&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;value&lt;br /&gt;
a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;br /&gt;
a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&lt;br /&gt;
b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;br /&gt;
b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I thought that the following two steps would have worked for all the files.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
First load the page and unstack it&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]pageload .\test.txt&lt;br /&gt;
pageunstack name dateid @ value[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
to get the series valuea and valueb (as well as a series &lt;em&gt;dateid&lt;/em&gt;, a pool &lt;em&gt;name&lt;/em&gt; and a group &lt;em&gt;value&lt;/em&gt;) and then do some cleanup&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]delete name value dateid&lt;br /&gt;
rename value* *[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
And this does work for the first two files, test.txt and test2.txt. But for test3.txt the first step doesn't create the series valuea and valueb (nor the group value) but instead a single series value. And then the second step naturally results in an empty page (albeit correctly dated).&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
What to do?</description>
                                  <pubDate>Sat, 30 May 2026 04:46:43 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22096#p72011</guid>		   					
                                      </item>
                                  <item>
                                  <title>Merging datasets</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72010</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>This seems to handle the second case:&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]mode quiet&lt;br /&gt;
close @all&lt;br /&gt;
import(page=key) .\key.txt @freq u 1&lt;br /&gt;
%name = @wright(@wlookup("*"), 1)&lt;br /&gt;
rename {%name} name&lt;br /&gt;
%name = "name"&lt;br /&gt;
rename series* key*&lt;br /&gt;
%keys = @wlookup("key*")&lt;br /&gt;
&lt;br /&gt;
%objects = @wdelim( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@wreplace( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"vintage year " + %keys + " " + "value01 value02 value03 value04", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"*", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"""*""" _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;), _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" ", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"," _&lt;br /&gt;
)&lt;br /&gt;
pageload(page=data) .\data.txt nonames names=({%objects})&lt;br /&gt;
&lt;br /&gt;
pagecopy(page=data_key)&lt;br /&gt;
copy(merge,nacat) key\* data_key\ @src key01 key02 @dest key01 key02&lt;br /&gt;
show key* name vintage year value*[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Wed, 27 May 2026 18:06:50 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72010</guid>		   					
                                      </item>
                                  <item>
                                  <title>Merging datasets</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72009</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>I'm trying to do either a one-to-many or a many-to-one merge of two datasets (attached). The program file where I try to do it is below.&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]mode quiet&lt;br /&gt;
close @all&lt;br /&gt;
import(page=key) .\key.txt @freq u 1&lt;br /&gt;
%name = @wright(@wlookup("*"), 1)&lt;br /&gt;
rename {%name} name&lt;br /&gt;
%name = "name"&lt;br /&gt;
rename series* key*&lt;br /&gt;
%keys = @wlookup("key*")&lt;br /&gt;
&lt;br /&gt;
%objects = @wdelim( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@wreplace( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"vintage year " + %keys + " " + "value01 value02 value03 value04", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"*", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"""*""" _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;), _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" ", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"," _&lt;br /&gt;
)&lt;br /&gt;
pageload(page=data) .\data.txt nonames names=({%objects})&lt;br /&gt;
&lt;br /&gt;
' Attempt 1&lt;br /&gt;
pageselect key&lt;br /&gt;
pagecopy(page=key_data)&lt;br /&gt;
import(type=txt, resize) _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.\data.txt _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;colhead=0 _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;names=({%objects}) _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@id {%keys} _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@destid {%keys}&lt;br /&gt;
show key* name vintage year value*&lt;br /&gt;
&lt;br /&gt;
' Attempt 2&lt;br /&gt;
pageselect data&lt;br /&gt;
pagecopy(page=data_key)&lt;br /&gt;
%names = @wdelim( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@wreplace( _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%keys + " " + "name", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"*", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"""*""" _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;), _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" ", _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"," _&lt;br /&gt;
)&lt;br /&gt;
import _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.\key.txt _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;colhead=0 _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;names=({%names}) _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@id {%keys} _&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@destid {%keys}&lt;br /&gt;
show key* name vintage year value*&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
The first attempt (one-to-many) results in a page "key_data" where only the first occurrence of the id series in data.txt is matched and only if the id series doesn't contain any NA values. The second attempt (many-to-one) results in a page "data_key" where only the first occurrence of the id series in data.txt is assigned the name column and only if the id series doesn't contain any NA values.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
What am I doing wrong?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
(The end goal is to stack the value?? columns and create a page with quarterly frequency.)</description>
                                  <pubDate>Wed, 27 May 2026 11:55:58 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22095#p72009</guid>		   					
                                      </item>
                                  <item>
                                  <title>Eviews 14 Link Command Issue</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22094#p72008</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Yes, you cannot redeclare the link if it already exists.  We'll take a look to see if we can improve that behaviour.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
In the meantime, yes, you'd have to delete it first.</description>
                                  <pubDate>Tue, 26 May 2026 19:00:50 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22094#p72008</guid>		   					
                                      </item>
                                  <item>
                                  <title>Eviews 14 Link Command Issue</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22094#p72007</link>
                                  <dc:creator>oleviasharbaugh</dc:creator>
                                  <description>I am having an EViews issue that I think relates to the fact that we recently updated from EViews 12 to EViews 14. &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
When I run this code in EViews 14:&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]for %y {%states}&lt;br /&gt;
    link amuse_area_{%y}_nsa&lt;br /&gt;
    amuse_area_{%y}_nsa.linkto(c=s) area\amuse_area_{%y}_nsa_1&lt;br /&gt;
next[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
I get this error:&lt;br&gt;&lt;br /&gt;
AMUSE_AREA_AK_NSA already exists and may not be modified&lt;br&gt;&lt;br /&gt;
 in "LINK AMUSE_AREA_AK_NSA" in AMUSESOLVE.PRG on line&lt;br&gt;&lt;br /&gt;
 125.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
But this is the way we always ran this program in Eviews 12 and we never had an issue. I have looked this up online and the only way I've come across to fix it is to delete the series before linking. Is that truly the best way to do this?</description>
                                  <pubDate>Tue, 26 May 2026 17:57:29 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22094#p72007</guid>		   					
                                      </item>
                                  <item>
                                  <title>@logmode?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22093#p72006</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>You mean determine what it is currently set to?  No, unfortunately not.</description>
                                  <pubDate>Mon, 25 May 2026 18:35:17 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22093#p72006</guid>		   					
                                      </item>
                                  <item>
                                  <title>@logmode?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22093#p72005</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>Is there some way to read the current log mode? (Though I haven't tried personally, I get the impression that it is possible to be writing to several logs at once, which probably complicates matters.)</description>
                                  <pubDate>Fri, 22 May 2026 05:24:32 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22093#p72005</guid>		   					
                                      </item>
                                  <item>
                                  <title>PNG graph.save(t=png,d=300) exports at ~96 DPI metadata, not 300 DPI</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22092#p72004</link>
                                  <dc:creator>ikarib</dc:creator>
                                  <description>Hi EViews team,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I think there may be a bug in PNG export DPI metadata.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I exported graphs with commands like:&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]  rer_trends.save(t=png,d=300) "RER_trends.png"&lt;br /&gt;
  rer_irf.save(t=png,d=300,w=8,h=5) "RER_IRF.png"&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
The program runs successfully and the PNG files are created, but the resulting files do not appear to be tagged as 300 DPI. Both files are 96 DPI.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The pixel dimensions are large enough, so d=300 may be affecting export sizing, but the PNG resolution metadata/pHYs chunk is still written as ~96 DPI. This causes automated checks and downstream publishing workflows that inspect DPI metadata to fail.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Expected behavior: save(t=png,d=300) should produce a PNG whose horizontal and vertical DPI metadata are 300.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Can you confirm whether d=300 is intended to set PNG DPI metadata, and if so whether this is a known issue?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks.</description>
                                  <pubDate>Tue, 19 May 2026 16:45:59 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22092#p72004</guid>		   					
                                      </item>
                                  <item>
                                  <title>Weird behavior relating to scope and local subroutines</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22012#p72003</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>Progress? Has the bug been looked into yet?</description>
                                  <pubDate>Tue, 19 May 2026 06:52:58 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22012#p72003</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p72002</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>Indeed. But then once in a while, it doesn’t. And then it’s harder to build something dependable on it.</description>
                                  <pubDate>Sun, 17 May 2026 05:05:48 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p72002</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p72001</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>@dateval usually just figures it out without needing a format</description>
                                  <pubDate>Sat, 16 May 2026 22:02:11 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p72001</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p72000</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>I want to be able to take a date string specified in the format of current page and then unambiguously convert that string to a date value.</description>
                                  <pubDate>Sat, 16 May 2026 15:17:00 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p72000</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71999</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>No, it is a global setting in EViews.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I think there's probably an easy way to do what you want, but I don't understand, yet, what you're trying to do.</description>
                                  <pubDate>Sat, 16 May 2026 12:44:49 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71999</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71998</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>By "machine based", do you mean that it depends on the &lt;strong&gt;locale&lt;/strong&gt; of the machine?</description>
                                  <pubDate>Fri, 15 May 2026 05:55:35 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71998</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71997</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>I was thinking date &lt;strong&gt;format&lt;/strong&gt;. On a typical quarterly page, I'd like to get back "YYYY[Q]Q". I have often found code like this&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]%old_date_format = @word( _&lt;br /&gt;
    "YYYY YYYY YYYY YYYY YYYY YYYY YYYY YYYY YYYY YYYY YYYY " _&lt;br /&gt;
    + "YYYY[S]S YYYY[Q]Q YYYY[M]MM " _&lt;br /&gt;
    + "DD/MM/YYYY DD/MM/YYYY DD/MM/YYYY DD/MM/YYYY DD/MM/YYYY DD/MM/YYYY", _&lt;br /&gt;
    @wfindnc( _&lt;br /&gt;
        "20Y 10Y 9Y 8Y 7Y 6Y 5Y 4Y 3Y 2Y A " _&lt;br /&gt;
        + "S Q M " _&lt;br /&gt;
        + "BM F T W D7 D5", _&lt;br /&gt;
        @pagefreq _&lt;br /&gt;
    ) _&lt;br /&gt;
)&lt;br /&gt;
%new_date_format = "YYYY[M]MM"&lt;br /&gt;
%date_in_new_format = @datestr(@dateval(%date_in_old_format, %old_date_format), %new_date_format)[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
which feels unstable and could be avoided if EViews supplied something like @pagedateformat to use instead of the unwieldy (and incomplete) expression for %old_date_format.</description>
                                  <pubDate>Fri, 15 May 2026 05:53:03 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71997</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get Series with DisplayNames while using Show</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71996</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>No, the spreadsheet view of a group does not allow you to use displaynames instead of actual names.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
You could write a quick add in that does it for you.  Freeze the spreadsheet view of the group into a table, loop through the columns replacing the text in the first row with the displayname of the series instead of the actual name, and then displaying that table in the group.</description>
                                  <pubDate>Thu, 14 May 2026 22:37:27 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71996</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71995</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>format or frequency?  @pagefreq give the frequency.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Format is machine based, not page/file based.</description>
                                  <pubDate>Thu, 14 May 2026 22:34:26 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71995</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get date format for active page?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71994</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>Is it possible to get the date format of the current page? So that I know that @dateval gives me the correct value.</description>
                                  <pubDate>Wed, 13 May 2026 06:45:18 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22091#p71994</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get Series with DisplayNames while using Show</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71993</link>
                                  <dc:creator>nidhijain</dc:creator>
                                  <description>I have series in my workfile as for example:&lt;br&gt;&lt;br /&gt;
GDP, PP_PR_US, PP_PR_IN.&lt;br&gt;&lt;br /&gt;
Using these names as they are handled in programs.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I have given them certain understandable displaynames as :&lt;br&gt;&lt;br /&gt;
GDP : Gross Domestic Product&lt;br&gt;&lt;br /&gt;
PP_PR_US : Price of UnitedStates&lt;br&gt;&lt;br /&gt;
PP_PR_IN : Price of India.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Now what i want is, when i run the show command as :&lt;br&gt;&lt;br /&gt;
show gdp PP_PR_us pp_pr_in&lt;br&gt;&lt;br /&gt;
then in the result window, instead of getting these regular names on top of series, can i get the displaynames.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Attaching the screenshot.</description>
                                  <pubDate>Wed, 13 May 2026 04:56:28 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71993</guid>		   					
                                      </item>
                                  <item>
                                  <title>Export to excel with equation/formula</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22090#p71992</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Not built in, no</description>
                                  <pubDate>Tue, 12 May 2026 15:57:35 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22090#p71992</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get Series with DisplayNames while using Show</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71991</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>I don't follow what you want here.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The show command is used to display a view of an object.  &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
You could use&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
show object.label&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
which would display the label view, that has the displayname as one of the entries?</description>
                                  <pubDate>Tue, 12 May 2026 15:56:32 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71991</guid>		   					
                                      </item>
                                  <item>
                                  <title>Export to excel with equation/formula</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22090#p71990</link>
                                  <dc:creator>nidhijain</dc:creator>
                                  <description>I am exporting certain calculative series in the excel. These are getting calculated with direct equation written in program or through the models.&lt;br&gt;&lt;br /&gt;
While exporting, is there a way, that the formula of the series remain intact and exported to excel as well.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
For example, if &lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
seriesA = seriesB+3.05+seriesC(-1)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
If i am exporting all these series in excel, SeriesA should maintain it's formula in excel as well. Any change in values, will recalculate the data of SeriesA directly</description>
                                  <pubDate>Tue, 12 May 2026 04:08:50 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22090#p71990</guid>		   					
                                      </item>
                                  <item>
                                  <title>Get Series with DisplayNames while using Show</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71989</link>
                                  <dc:creator>nidhijain</dc:creator>
                                  <description>Is there a way that if i use SHOW command, i get the display names of the series rather than the usual name, the same way as it show in charts.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Show gdp, should display the series with "Gross Domestic Product).&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
In case, if SPOOL is teh only option to achieve this, how do we show multiple series from spool for comparison,&lt;br&gt;&lt;br /&gt;
like if i added, GDP, Crude, demand, supply... these four series in SPOOL, i don't want the tree structure display mode.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Can it be displayed like regular SHOW command, so i can compare the data of these series same as in spreadsheet</description>
                                  <pubDate>Tue, 12 May 2026 04:04:02 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=7&amp;t=22089#p71989</guid>		   					
                                      </item>
                                  <item>
                                  <title>Valid names for options?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22088#p71988</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Probably</description>
                                  <pubDate>Sun, 10 May 2026 20:38:42 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22088#p71988</guid>		   					
                                      </item>
                                  <item>
                                  <title>Valid names for options?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22088#p71987</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>Are the requirements for valid option names (“hasoptions” and “equal options”) the same as for object names?</description>
                                  <pubDate>Sun, 10 May 2026 11:56:28 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22088#p71987</guid>		   					
                                      </item>
                                  <item>
                                  <title>shell not working</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22087#p71986</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>When I enter &lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]shell[/code]&lt;/code&gt;&lt;/div&gt; in the command prompt, I get the following error message: &lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="uncited"&gt;&lt;div&gt;Unable to create process:  Katalognamnet är&lt;br&gt;&lt;br /&gt;
 felaktigt.&lt;br&gt;&lt;br /&gt;
.&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
It translates to "Fault path name". I think that the error code is ERROR_BAD_PATHNAME. It seems to occur when @datapath refers to a nonexistent folder, which can occur if the folder is deleted outside of Eviews. If this is the case Eviews tries to start the process with a nonexistent working directory.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Perhaps this should be caught by Eviews and given a less opaque error message. But I'm not entirely sure.</description>
                                  <pubDate>Sat, 09 May 2026 05:25:35 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22087#p71986</guid>		   					
                                      </item>
                                  <item>
                                  <title>How to break out of called program from within subroutine?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22086#p71985</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>I believe &lt;em&gt;return&lt;/em&gt; will exit out of a subroutine, if in one, and exit out of a program otherwise.  So, exiting out of a program whilst in a subroutine I think is not possible in one go.</description>
                                  <pubDate>Thu, 07 May 2026 21:16:29 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22086#p71985</guid>		   					
                                      </item>
                                  <item>
                                  <title>How to break out of called program from within subroutine?</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22086#p71984</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>Is there some way in the setup below to break out of child.prg from the subroutine childsub and return to parent.prg? The desired solution would show the dialog box "after child" but none of the other two.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
&lt;strong&gt;parent.prg&lt;/strong&gt;&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]exec .\child.prg&lt;br /&gt;
@uiprompt("after child")[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;child.prg&lt;/strong&gt;&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]call childsub&lt;br /&gt;
@uiprompt("after childsub")&lt;br /&gt;
&lt;br /&gt;
subroutine childsub&lt;br /&gt;
  ' Break out of child.prg here&lt;br /&gt;
  @uiprompt("after breakout")&lt;br /&gt;
endsub[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Thu, 07 May 2026 18:13:37 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22086#p71984</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71983</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Sorry, opacity and anti-aliasing.</description>
                                  <pubDate>Thu, 07 May 2026 14:53:35 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71983</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71982</link>
                                  <dc:creator>Dag Kolsrud</dc:creator>
                                  <description>Opacity options have been tried before and did not help, see communications in June 2024 with  EViews Steve.</description>
                                  <pubDate>Thu, 07 May 2026 08:59:49 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71982</guid>		   					
                                      </item>
                                  <item>
                                  <title>%hasoptions and/or %equaloptions</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71981</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>That’s great! Exactly what I was looking for :-)</description>
                                  <pubDate>Wed, 06 May 2026 16:30:27 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71981</guid>		   					
                                      </item>
                                  <item>
                                  <title>%hasoptions and/or %equaloptions</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71980</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>But, you can return the list of options provided with the @getoptions function:&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
%options = @getoptions&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
You can retrieve the ith option with @option:&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
%firstoption = @option(1)&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Wed, 06 May 2026 16:08:54 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71980</guid>		   					
                                      </item>
                                  <item>
                                  <title>%hasoptions and/or %equaloptions</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71979</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>I don't understand what you're asking here.</description>
                                  <pubDate>Wed, 06 May 2026 16:03:28 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71979</guid>		   					
                                      </item>
                                  <item>
                                  <title>%hasoptions and/or %equaloptions</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71978</link>
                                  <dc:creator>paues</dc:creator>
                                  <description>A called program's arguments are stored in %args. But can I check what @equaloption's and @hasoption's it was called with without know them in advance? There doesn't seem to be variables %hasoptions and/or %equaloptions</description>
                                  <pubDate>Wed, 06 May 2026 14:52:14 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22085#p71978</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71977</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>I think both issues are due to opacity - opacity doesn't work well with dashed lines.  If you turn off opacity for all the lines in the chart, it should behave better.</description>
                                  <pubDate>Mon, 04 May 2026 16:42:01 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71977</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71976</link>
                                  <dc:creator>Dag Kolsrud</dc:creator>
                                  <description>My email on April 27had 2 attachments; a workfile and a program. The program produces 3 figures, which are collected in a spool, on a quarterly page called 'grpahs'. In Statistics Norway we experience 2 problems:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
1) Graph lines in the figure code with the "dash" attribute do not always appear dashed in EViews. Sometimes they are graphed solid rather than dashed despite the dashed attribute. The dash attribute does not seem to work when variables on a page with higher frequency are graphed from a page with lower frequency.  That is what my email from April 27 tries to explain.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
2) Another problem is that when graphed lines appear correctly as dashed in EViews, they get saved to file in the pdf format as solid lines in EViews 14, but correctly as dashed lines in EViews 12 using the printer driver "Microsoft Print to PDF.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I appologize for combining rather than clearly separating the two problems. However, I still hope you can understand and investigate the problem from the previously attached files.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Sincerely, Dag</description>
                                  <pubDate>Mon, 04 May 2026 07:36:14 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71976</guid>		   					
                                      </item>
                                  <item>
                                  <title>Timing when specifying state-space model</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=4&amp;t=22084#p71975</link>
                                  <dc:creator>ssmodeller</dc:creator>
                                  <description>Hi&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Say I specify a state-space model in the following way:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
@signal y = x + [ename=e1, var = (sigma(1)+dummy*sigma(2))^2]&lt;br&gt;&lt;br /&gt;
@state x = x(-1) + [ename=e2, var = (sigma(1)+dummy*sigma(2))^2]&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
where dummy is 1 in period t1. Am I right in thinking that when "x" is written in a signal equation, it means "x(t)", but when "x" is written in a state equation, it means "x(t+1)"? But "dummy" always means "dummy(t)", whether it's in a state or signal eq?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
So as written, the signal-equation dummy will affect y in period t1, but the state-equation dummy will affect x and y in period t1+1, even though it's the same variable?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks!</description>
                                  <pubDate>Fri, 01 May 2026 23:38:39 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=4&amp;t=22084#p71975</guid>		   					
                                      </item>
                                  <item>
                                  <title>average of two series</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22083#p71974</link>
                                  <dc:creator>startz</dc:creator>
                                  <description>Or&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]series x = (a+b+c)/3[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Fri, 01 May 2026 13:46:15 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22083#p71974</guid>		   					
                                      </item>
                                  <item>
                                  <title>average of two series</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22083#p71973</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
group mygrp a b c&lt;br /&gt;
series x = @rmean(mygrp)&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Thu, 30 Apr 2026 17:10:19 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22083#p71973</guid>		   					
                                      </item>
                                  <item>
                                  <title>average of two series</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=22083#p71972</link>
                                  <dc:creator>houji</dc:creator>
                                  <description>Hi,&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I would like to create a series X that is the average of a few other series (a,b,c, etc).&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Is there a function in Eviews that would give me &lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]series x = average(a,b,c)[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
?&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Thanks!&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Houji</description>
                                  <pubDate>Thu, 30 Apr 2026 16:07:45 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=22083#p71972</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71971</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Sorry, I'm getting quite lost.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
As far as I can tell, the issue you are experiencing is that you have a graph object that when saved to disk as a PDF, the dashed lines don't appear.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Do you have a workfile we can use that has such a graph object?</description>
                                  <pubDate>Tue, 28 Apr 2026 15:33:11 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71971</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71970</link>
                                  <dc:creator>Dag Kolsrud</dc:creator>
                                  <description>"ps graphs" selects a quarterly page in the workfile "data_xchange_housing_oil" which contains the figures and the spool. When issuing a line command from that page the result gets stored there, but the graphs of series on other pages with higher frequencies, e.g. the page "w" with weekly frequency, do not get dashed. If you uncomment the "ps w" command on line 63, the graphs get dashed. Why does the different frequencies decide whether a series get dashed or not?</description>
                                  <pubDate>Tue, 28 Apr 2026 14:04:48 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71970</guid>		   					
                                      </item>
                                  <item>
                                  <title>Database Error: FRED library error: 'Internal Server Error' in "FETCH  ..."</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=5&amp;t=22074#p71969</link>
                                  <dc:creator>capuchin</dc:creator>
                                  <description>It seems to help to put each individual fetch on its own line of code instead of looping a fetch command, but it's a real nightmare.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I guess now I need to add 20 lines of code to each FRED fetch command in order to not fail! Thanks for the lines.</description>
                                  <pubDate>Mon, 27 Apr 2026 19:37:05 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=5&amp;t=22074#p71969</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71968</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Line 27 of the program:&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
ps graphs&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
What's that?</description>
                                  <pubDate>Mon, 27 Apr 2026 14:33:10 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71968</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71967</link>
                                  <dc:creator>Dag Kolsrud</dc:creator>
                                  <description>I have attached a small workfile with sereis of different frequencies on different pages and a program that creates three figures and collects them in a spool. The results show that when a forecast seires is graphed from a page with lower frequency, it does not get dashed. In the first figure produced by the program, the following commands (where w denote a page with weekly frequecy) executed from from a page with quarterly frequency produce a figure with solid rather than dashed forecasts:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
graph {%gr}.line(x) w\noki44_h w\noki44_f   w\nokeur_h w\nokeur_f   w\nokusd_h w\nokusd_f            '         &lt;br&gt;&lt;br /&gt;
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(1) linecolor(@rgb({%color1}))  linepattern(solid) legend(%serie1) axis(l) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(2) linecolor(@rgb({%color1})) linepattern({%dashline}) legend() axis(l) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(3) linecolor(@rgb({%color2}))  linepattern(solid) legend(%serie2) axis(r) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(4) linecolor(@rgb({%color2})) linepattern({%dashline}) legend() axis(r) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(5) linecolor(@rgb({%color3}))  linepattern(solid) legend(%serie3) axis(r) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(6) linecolor(@rgb({%color3})) linepattern({%dashline}) legend() axis(r) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
If graphed from a page with weekly frequency, the forecasts get dashed as instructed. The problem of color was due to some forecast series containing the history. Removing the history form the forecast series solved the problem.</description>
                                  <pubDate>Mon, 27 Apr 2026 13:23:00 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71967</guid>		   					
                                      </item>
                                  <item>
                                  <title>bug .testbtw</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71961</link>
                                  <dc:creator>rousing</dc:creator>
                                  <description>Thanks a lot :)</description>
                                  <pubDate>Sat, 18 Apr 2026 06:47:58 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71961</guid>		   					
                                      </item>
                                  <item>
                                  <title>bug .testbtw</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71960</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Found, will be fixed in next patch.</description>
                                  <pubDate>Fri, 17 Apr 2026 21:53:23 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71960</guid>		   					
                                      </item>
                                  <item>
                                  <title>bug .testbtw</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71959</link>
                                  <dc:creator>rousing</dc:creator>
                                  <description>just checked it at home with a fully up-to-date version, it still creates the output for testing the mean and not the variance which "vars" should trigger</description>
                                  <pubDate>Fri, 17 Apr 2026 19:09:57 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71959</guid>		   					
                                      </item>
                                  <item>
                                  <title>bug .testbtw</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71958</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>This works on the latest version of EViews 14.  Can you check it on yours?&lt;br /&gt;
&lt;div class="codebox"&gt;&lt;p&gt;Code: &lt;/p&gt;&lt;code&gt;[code]&lt;br /&gt;
wfcreate m 1990 2025&lt;br /&gt;
series x=nrnd&lt;br /&gt;
series y=nrnd&lt;br /&gt;
group _grp x y&lt;br /&gt;
&lt;br /&gt;
show _grp.testbtw(vars)&lt;br /&gt;
[/code]&lt;/code&gt;&lt;/div&gt;</description>
                                  <pubDate>Fri, 17 Apr 2026 15:44:43 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71958</guid>		   					
                                      </item>
                                  <item>
                                  <title>bug .testbtw</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71957</link>
                                  <dc:creator>rousing</dc:creator>
                                  <description>Hi&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
when running _grp.testbtw(var) or _grp.testbtw(vars) with a group containing two series the results for the mean gets produced and not ones relating to the variance.&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Best regards&lt;br&gt;&lt;br /&gt;
Rasmus&lt;br&gt;&lt;br /&gt;
Eviews 14, May 19 2025 build&lt;br&gt;&lt;br /&gt;
14C08223</description>
                                  <pubDate>Fri, 17 Apr 2026 15:39:52 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=9&amp;t=22077#p71957</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71956</link>
                                  <dc:creator>EViews Gareth</dc:creator>
                                  <description>Do you have a simple example we can examine?</description>
                                  <pubDate>Fri, 17 Apr 2026 15:20:34 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71956</guid>		   					
                                      </item>
                                  <item>
                                  <title>Saving graphs as pdf</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71955</link>
                                  <dc:creator>Dag Kolsrud</dc:creator>
                                  <description>In Statistics Norway we try to use Eviews as much as possible for building, maintaining and using a large macro model, and also for producing tables and figures/graphs. Unfortunately, after EViews12, we experience problems with graphing and have to use EViews12 to get dashed lines that look good when saved to disk (as pdf files) (se previous entries in this tread). When I try to replace dashed lines (for forecasts) with solid lines with the same color/hue but lighter tint (than the historical series), both get the same color. If I try to give them different colors, they still get the same color:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
if !eviews_versjon = 12 then 'EViews12&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(1) linecolor(@rgb({%color1}))  linepattern(solid) legend(%serie1) axis(l) linewidth(!valuta_linewidth )&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(2) linecolor(@rgb({%color1})) linepattern(DASH1) legend() axis(l) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(3) linecolor(@rgb({%color2}))  linepattern(solid) legend(%serie2) axis(r) linewidth(!valuta_linewidth )&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(4) linecolor(@rgb({%color2})) linepattern(DASH1) legend() axis(r) linewidth({!linewidth})&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(5) linecolor(@rgb({%color3}))  linepattern(solid) legend(%serie3) axis(r) linewidth(!valuta_linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(6) linecolor(@rgb({%color3})) linepattern(DASH1) legend() axis(r) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
else 'EViews14&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(1) linecolor(@rgb({%color1}))  linepattern(solid) legend(%serie1) axis(l) linewidth(!valuta_linewidth )&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(2) linecolor(@rgb({%color2})) linepattern(solid) legend() axis(l) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(3) linecolor(@rgb({%color3}))  linepattern(solid) legend(%serie2) axis(r) linewidth(!valuta_linewidth )&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(4) linecolor(@rgb({%color1})) linepattern(solid) legend() axis(r) linewidth({!linewidth})&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(5) linecolor(@rgb({%color2}))  linepattern(solid) legend(%serie3) axis(r) linewidth(!valuta_linewidth)&lt;br&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{%gr}.setelem(6) linecolor(@rgb({%color3})) linepattern(solid) legend() axis(r) linewidth(!linewidth)&lt;br&gt;&lt;br /&gt;
endif&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Why can we not format the line type in EViews 13 and 14?</description>
                                  <pubDate>Fri, 17 Apr 2026 13:14:06 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21657#p71955</guid>		   					
                                      </item>
                                  <item>
                                  <title>Graph Issue: Dashed Line Saving as Solid Line</title>
                                  <link>https://forums.eviews.com/viewtopic.php?f=3&amp;t=21903#p71954</link>
                                  <dc:creator>Dag Kolsrud</dc:creator>
                                  <description>In Statistics Norway, we experience similar problems with dashed lines in both EViews 13 and 14, while we have no problems with dashed lines in EViews 12 (which we continue using fro graphing purposes only). In Eviews 14, I have tried to replace dashed lines with solid lines of the same color, but a lighter tint to separate the historical data from the forecasted continuation. That does not work either. The two lines get the same color even if I specify completely different colors. My question is:&lt;br&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Havecertain graph related functions within EViews12 been 'outsourced' to / replaced by similar Windows functions which introduce incompatibilities that could be the cause of the problems?</description>
                                  <pubDate>Fri, 17 Apr 2026 12:53:00 GMT</pubDate>
                            	    <guid isPermaLink="true">https://forums.eviews.com/viewtopic.php?f=3&amp;t=21903#p71954</guid>		   					
                                      </item></channel></rss>