Custome indicator to combine stacking multiple oscillator indicators
Custome indicator to combine stacking multiple oscillator indicators
01 Jul 2020, 17:39
Hi there,
By using cTrader I can stack up oscillator indicators look like this.
And in my custom indicator code, I have 2 Output result. Here is sample code.
[Output("Result", LineColor = "DarkGreen")]
public IndicatorDataSeries Result { get; set; }
[Output("Result2", LineColor = "Blue")]
public IndicatorDataSeries Result2 { get; set; }
My custom indicator show like this.
How can I create custom indicator which 2 stacked oscillator indicators?
Regards,
Noppanon
Replies
PanagiotisCharalampous
02 Jul 2020, 08:40
Hi noppanon,
You can't, they need to be two separate indicators.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Jul 2020, 10:18
Hi noppanon,
We do not have such plans at the moment since we did not have demand for such a feature.
Best Regards,
Panagiotis
@PanagiotisCharalampous
noppanon
01 Jul 2020, 17:44
RE:
noppanon said:
@noppanon