custom indicator parameter (field) problem
-
hello
Is anyone know how tu add such a type of parmeter to custom indicator which have a few option to choose

like on screen, "Mode" have options "Historical" and "Current", but
"Style" have "Colored" and "Monochrome" -
They are enums add this to the enumerations at the top of indicator:
enum Mode
{
Historical,
Current
};enum Style
{
Colored,
Monochrome
};Add Mode & Style as the type and this should make it work