In your solution, Indicator1 should receive parameters from Indicator2, due to, Indicator1 depends on Indicator2.
Now, for 2 indicators work independently, both should request the same parameters.
What I wanted to do is the following:
- 2 indicators: Indicator2 depends of results of Indicator1 .
- Indicator1 has its own parameters and indicator2 other additional parameters.
- Indicator2 use data and results from Indicator1 to calculate their own results.
I have only one class, it requests all the necessary parameters needed to calculate the results.
I Only wanted divide in 2 indicators to give user a choice to show or not indicator2.
Thank you.

Comment