//---- Read values from the signal buffer int start() { // Read signal for this bar double value = iCustom(Symbol(), Period(), "PZ_DayTrading", 4, 1); // Do something if(value == OP_BUY) { /* Your code for bullish signal */ } if(value == OP_SELL){ ...