Very strange, I see this for the first time. Somehow this appears in the code:
void iCustom() { //---- Read value from trend and signal buffer int start() { // Read values double trend = iCustom(Symbol(), Period(), "PZ_LopezTrend_LICENSENUM", 5, 1); double signal = iCustom(Symbol(), Period(), "PZ_LopezTrend_LICENCESUM", 6, 1); // Do something if(trend == OP_BUY) { /* Your code if trend is currently bullish */ } if(trend == OP_SELL) { /* Your code if trend is currently bearish */ } if(signal == OP_BUY) { /* Your code for bullish trend change */ } if(signal == OP_SELL) { /* Your code for bearish trend change */ } // Exit return(0); } return; }.. but I don't recognize this code and I can't see how it's injected into the code. Do you have some idea?