protected override void OnMarketData(MarketDataEventArgs marketDataUpdate)
{
}
If one of these other indicators also has an OnMarketData() does this create additional subscriptions or would the same cycles from the parent indicator get used?
If additional subscriptions are created, is it possible to prevent this based on user input? For example, if user input is X then override OnMarketData, but if not, then it's not needed.
I know I could do the following, but this would still process the OnMarketData()
protected override void OnMarketData(MarketDataEventArgs marketDataUpdate)
{
if(input != x)return;
}

Comment