Problem in importing custom indicator - Enumerations
-
Hi to all,
i'm trying to import a custom made, non public indicator, but I receive this error
"Ops. Problem found in the following enumerations" enDisplayWhat
This is the enum that gave the problem
#define _showSignal 1
#define _showCandle 2enum enDisplayWhat
{
show_candle= _showCandle,
show_signal= _showSignal,
show_all = _showCandle + _showSignal,
};Any help is much appreciated
Thanks in advance
-
@gabrielebrignoli I guess the show_all may cause an issue, but that's just a guess. Do you need the show_all option for the indicator to work?