I would like to define a constant in my indicator:
For example:
public const in UP = 1;
public const in DOWN = 2;
Thus, once I call my indicator (from another indicator/strategy I have) I will be able to check whether the value is UP or DOWN.
1. Is there a way to do that?
2. if so, what is the format I should use
Regards,
Ran
Comment