- ago
Installed Build 7. Now when I open a strategy, make a change and save the change. Anything after that I get (Not Responding) in the window header.
0
903
Solved
6 Replies

Reply

Bookmark

Sort
- ago
#1
1. If you restart WL7 does the issue go away?
2. Does it affect Blocks, code-based, or other strategy types, or all them?
3. Or maybe just some particular strategy, if so, how complex is it and what's specific about it?
0
Glitch8
 ( 10.06% )
- ago
#2
I think this is a windows 10 issue, it started happening to me whenever I click save as in other programs like Paint. The save as dialog hangs for a long time before responding.

Also wondering if it happens on any strategy or only a certain subset??
0
- ago
#3
QUOTE:
The save as dialog hangs for a long time before responding.

Which may suggest Windows is busy querying a network device / share or doing something like that.
0
- ago
#4
I isolated the problem to the following code. The strategy compiled and ran fine but would on save or save as.


CODE:
public MyStrategy() : base()       {          AddParameter("down", ParameterTypes.Int32, 2, 2, 4, 1);          AddParameter("up", ParameterTypes.Int32, 5, 4, 6, 1);          AddParameter("xdays", ParameterTypes.Int32, 15, 10, 35, -1);          AddParameter("xma", ParameterTypes.Int32, 200, 100, 300, -1);       }
0
Glitch8
 ( 10.06% )
- ago
#5
It could very well be the negative increment, can you try making the increment positive? This gives us something to look into, thanks!
0
- ago
#6
We'll fix this in Build 8. Good catch hrplein!
0
Best Answer

Reply

Bookmark

Sort