i already check the indicator ..
if u just need the arrow its actually simple just use one buffer
double breakout = iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", 1, 1);
if(breakout == OP_BUY) { /* Your code for bullish breakout (blue arrow) */}
if(breakout == OP_SELL) { /* Your code for bearish breakout (red arrow) */}
but u still have problem about paramater input ,
the indicator have too many input parameter
iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", 1, 1) <<--- this code just load the indicator with default input parameter, default input parameter just have 10 pattern activate ... if u want to activate all pattern u need set all parameter pattern in indicator to true.. when code to ea the icustom will like
..
iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", -----------here must be add 66 parameter------- ,1, 1) ;, and as i know icustom have max parameter(32 or 64 i think .. i forgot about the max limit).
i think better to use pz harmonacci scanner an trade manually
or make ea with those scanner