What is the recommended way to build a strategy on this indicator?
I do not want to cop/paste the logic of the indicator to the strategy. This would be a "code smell".
The strategy should be able to read the signals from the indicator.
My current implementation is to add a public "List<Signal>" to the indicator and the strategy simply reads this list.
But I think this is boilerplate code.
Is there a recommended way to do this?

Comment