Hi, to add EMA indicator on chart I use the follow code:
chart.addIndicator(indicators.getIndicator("EMA"), new Object[] {emaPeriod}, new Color[]{Color.BLUE}, new DrawingStyle[]{DrawingStyle.LINE}, new int[]{1});
but I need to add EMA indicator with two additional levels
How to do this?
API Support
Post subject: Re: How to add EMA indicator on chart with additional levels