Great day,

Need some guidance on how to use indicators with multiple resolutions in multiple symbols with defined consolidator?

1. How to declare those indicators properly for each symbol and request them?


//inside initialize
foreach(var symbol in _symbols)
{
_sma = SMA(symbol, ...);
}

//inside tradebars
OnData(TradeBars data)
{
.. bar consolidator, etc. stuff
foreach(var symbol in )symbols)
{
_sma = [for each symbol]?
}
}


2. What I was able to achieve is this, but by some reason it only uses 3 first symbols from lists, don't think it's according to logic, so my understanding ends here :)