Definitely something with the compiler:
Code before error:
public: /* Constructor /
MDLIC_indicators_iEnvelopes()
{
MAperiod = (int)14;
MAshift = (int)0;
MAmethod = (ENUM_MA_METHOD)MODE_SMA;
Deviation = (double)0.1;
AppliedPrice = (ENUM_APPLIED_PRICE)PRICE_CLOSE;
Mode = (int)1;
Symbol = (string)CurrentSymbol();
Period = (ENUM_TIMEFRAMES)CurrentTimeframe();
Shift = (int)0;
}
Code now:
public: / Constructor */
MDLIC_indicators_iEnvelopes()
{
MAperiod = (int)14;
MAshift = (int)0;
MAmethod = (ENUM_MA_METHOD)MODE_SMA;
Deviation = (double)0.1;
AppliedPrice = (ENUM_APPLIED_PRICE)PRICE_CLOSE;
Mode = (int)1;
Symbol = (string)CurrentSymbol();
Period = (ENUM_TIMEFRAMES)c::PERIOD_CURRENT;
Shift = (int)0;
}
Envelopes Indicator is a default in MT4 and fxDreema. Seems to be a fxDreema issue.