Search found 10 matches
- Mon Feb 20, 2017 1:20 am
- Forum: Bug Reports
- Topic: Error wfsave command & delete function
- Replies: 14
- Views: 210511
Re: Error wfsave command & delete function
Thank you, this is pretty interesting and could make a huge difference regarding my issue. The unsolved question is: why is that? It makes no sense at first glance.
- Wed Feb 15, 2017 4:51 am
- Forum: Bug Reports
- Topic: Error wfsave command & delete function
- Replies: 14
- Views: 210511
Re: Error wfsave command & delete function
Okay. Does it make a difference how many objects my wildcard contains? For example: instead of using " delete sca_* " I should use for loops (in my case for each month exists a certain amount of objects I want to delete): for !year = 1991 to 2016 for !month = 1 to 12 delete sca_{!year}{!mo...
- Tue Feb 14, 2017 9:36 am
- Forum: Bug Reports
- Topic: Error wfsave command & delete function
- Replies: 14
- Views: 210511
Re: Error wfsave command & delete function
I think there is some room for optimization, thank you. So far I deleted all obsolete objects after a specific step in my program, but part of this process could be done in before. Further ideas to enhance computational power? Powering up my computer or using other RAM (cloud, network)? I guess ther...
- Tue Feb 14, 2017 7:22 am
- Forum: Bug Reports
- Topic: Error wfsave command & delete function
- Replies: 14
- Views: 210511
Re: Error wfsave command & delete function
I thought about that, but yes there's a reason. Those objects are not just scalars, could also be series oder equation objects.
- Tue Feb 14, 2017 5:57 am
- Forum: Bug Reports
- Topic: Error wfsave command & delete function
- Replies: 14
- Views: 210511
Re: Error wfsave command & delete function
No, as those objects have a specific name (each start with sca_) I just use " delete sca_* ". I guess the problem is the amount of objects (over 100k). I think thats one of my biggest problems in general, the vast amount of objects. My program needs 3 hours to compute everything. As im a n...
- Sun Jan 29, 2017 7:18 am
- Forum: Programming
- Topic: Illegal or reserved name
- Replies: 2
- Views: 4015
Re: Illegal or reserved name
Thank you startz :)
- Sat Jan 28, 2017 12:27 pm
- Forum: Programming
- Topic: Illegal or reserved name
- Replies: 2
- Views: 4015
Illegal or reserved name
Hey guys, I get this error message for the red codelines below: SER_VW_R1991M10_S1BM1HML1 is an illegal or reserved name in "SERIES SER_VW_R{!A}M10_S{!S}BM{!P}{%V}{!H} = (SER_R1991M10_S1BM1HML1 * S1991M9) / SCA_S1BM1HML1_1991_9". for %v hml smb bet for !a = 1991 to 2015 !b = !a + 1 for !s ...
- Fri Jan 27, 2017 4:47 am
- Forum: Bug Reports
- Topic: Error wfsave command & delete function
- Replies: 14
- Views: 210511
Error wfsave command & delete function
Hello, my program opens an existing workfile (which contains one page) named "germany" and then does some data manipulation, etc. In the end the workfile contains a second page and I want to save the workfile under a different name (wfsave germany5x5.wf1). Then the following error message ...
- Wed Nov 23, 2016 4:18 am
- Forum: Programming
- Topic: Optimization under constraints
- Replies: 0
- Views: 4206
Optimization under constraints
Hello, I want to run an optimization procedure under certain constraints (for example Markowitz Minimum Variance under the constraint of no short positions). Regarding my data: Initially, I have a sample of stocks which contains of monthly returns, market cap and book-to-market information per month...
- Mon Oct 31, 2016 8:40 am
- Forum: Programming
- Topic: Replacing for loops
- Replies: 1
- Views: 2938
Replacing for loops
Hey guys, I have monthly data from January 1981 till December 2016 (the format is "yyyy[M]MM"). Im running the following two for loops in order to analyze each point in time: for !year = 1981 to 2016 for !month = 1 to 12 smpl !yearM!month !yearM!month if...(several conditions regarding the...
