Hi,
Anybody knows whether it is possible to provide values for variables when you actually execute your ProOrders?
So far I need to modify the code everytime “if price above this number then quit”.. and go through the whole process every time.
Any ideas?
Variables and data input are not supported at runtime.
Any ideas?
Below spark any ideas in your mind?
If Price > X AND Price < X1 Then
Do this
Else
If Price > Y AND Price < Y1 Then
Do That
Else
If Price > Z AND Price < Z1 Then
Do theOther
ENDIF
ENDIF
ENDIF
Yes, and if you want to change the values for X, Y or Z every time you run the code you have to hardcode them and reload everything.
I hope this is changed in future versions, it probably is the only programming language where this has to be done