Output array of results

Created at 15 Dec 2015, 14:15
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
AL

aliveli186

Joined 15.12.2015

Output array of results
15 Dec 2015, 14:15


Instead of returning hard coded results one by one like;

[Output("Result #1")]
public IndicatorDataSeries Result1 { get; set; }

[Output("Result #2")]
public IndicatorDataSeries Result2 { get; set; }

[Output("Result #3")]
public IndicatorDataSeries Result3 { get; set; }

I want to return array of results of any size like;

[Output("Results")]
public List<IndicatorDataSeries> Results { get; set; }


cTrader Automate
@aliveli186