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.
Rename
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?
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?
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??
Also wondering if it happens on any strategy or only a certain subset??
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.
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); }
It could very well be the negative increment, can you try making the increment positive? This gives us something to look into, thanks!
We'll fix this in Build 8. Good catch hrplein!
Your Response
Post
Edit Post
Login is required