Hi Support,
I have the following code for drawing an arrow in an indicator:
outputParameterInfos = new OutputParameterInfo[] {new OutputParameterInfo("up", OutputParameterInfo.Type.DOUBLE,
OutputParameterInfo.DrawingStyle.ARROW_SYMBOL_UP), new OutputParameterInfo("down", OutputParameterInfo.Type.DOUBLE,
OutputParameterInfo.DrawingStyle.ARROW_SYMBOL_DOWN)};
I read the following from
https://www.dukascopy.com/wiki/index.php?title=Indicator_API:_OutputParameterInfo :
ARROW_SYMBOL_UP - draws arrow pointing up. Symbol of the arrow can be customized
ARROW_SYMBOL_DOWN - draws arrow pointing down. Symbol of the arrows can be customized
So how can I customise this?
Thanks in advance!