I have an indicator which does some things depending on parameters x, y and z which can be changed in the indicator options by the user.
There can be multiple parameter "sets" though. How do I implement this?
So the indicator should do something for example if:
x = 1 and y = 1 and z = 2
OR
x = 1 and y = 1 and z = 3
OR
x = 2 and y = 0 and z = 2
I thought about using files but not sure whether that's a smart idea because the parameters change depending on the stock/instrument.
I appreciate any ideas. Thanks!

Comment