I have a WL6 code that I am trying to convert to WL8.
The WL6 code had the following line:
if (bar + 1 - LastPosition.EntryBar >= 2)
Which I used to allocate a sell signal after two bars.
I have tried the following code in WL8:
if (idx + 1 - LastPosition.EntryBar >= 2)
But WL8 does not recognise the above and just sells after 1 bar. If doesn't matter if I change the 2 in the above code to a 6 for example, WL8 just sells on the next bar.
Does anybody know what I am doing wrong?
The WL6 code had the following line:
if (bar + 1 - LastPosition.EntryBar >= 2)
Which I used to allocate a sell signal after two bars.
I have tried the following code in WL8:
if (idx + 1 - LastPosition.EntryBar >= 2)
But WL8 does not recognise the above and just sells after 1 bar. If doesn't matter if I change the 2 in the above code to a 6 for example, WL8 just sells on the next bar.
Does anybody know what I am doing wrong?
Rename
That looks ok. We need to see more of your code to determine what is going wrong..
Thanks Paul,
I closed the WL code editor and reopened it and it seems to work now. I cannot explain this.
It is good to know that I had it right in the first place.
I closed the WL code editor and reopened it and it seems to work now. I cannot explain this.
It is good to know that I had it right in the first place.
Your Response
Post
Edit Post
Login is required