- ago
If I want to build an indicator from an indicator, then I can easily do it on the chart. However, in the Strategy Builder, I can only build a standard indicator from price components. I saw an opportunity to create a custom indicator that provides such functionality.

CODE:
//generate parameters protected override void GenerateParameters() {     AddParameter("Ind", ParameterType.Indicator, null); }


But I can't quite figure out how to write it. Please send an example indicator code that can be applied to other indicators in Strategy Builder.
0
239
Solved
1 Replies

Reply

Bookmark

Sort
- ago
#1
You don't need to code such indicator as it's already coded. Get familiar with Transformer Indicators i.e. IndOnInd.

QUOTE:
Please send an example indicator code that can be applied to other indicators in Strategy Builder.

Have you looked at the QuickRef? TimeSeries, TimeSeriesBase, IndicatorBase et al - a ton of examples.
1
Best Answer

Reply

Bookmark

Sort