I need to read the parameter settings of the running strategy from within
the script in a way that can be used in a general sub function / method.
Therefore directly adressing the variables doesn't work.
From within the strategy I tried the following but it didn't work:
this.Parameters[index].Value.ToString()
using
this.Parameters[index].Name
gives at least the name of the parameter(s).
What must be used here to get the values?
Thanks in advance, Stephan

Comment