I have several charts with several indicators.
I'm concerned about computational time comsuption and I wanted to know, which could be the best option
A) one indicator in one chart, calling to external indicator
B) all the indicators that I need in the same indicator
(I have the feeling, option B is faster)
Brushes:
I think that standard brushes (i.e Brushes.Blue)
are faster than user defined brushes (SolidColorBrush samplebrushes= new SolidColorBrush(Colors.Red) {Opacity = .90f}
What is faster when I want to have indicators in several chats at the sam time:
A) put each indicator in each chart
B) put in one chart an indicator built with several AddSeries inside, calculating all AddSeries and, when drawing the lines, drawing them in "Global Mode":
Draw.Line(NinjaScriptBaseowner,stringtag,boolisAutoScale,DateTimestartTime,doublestartY,DateTimeendTime,doubleendY, TRUE, stringtemplateName)
I have the feeling, that drawing in Global requires a lot of time.
Thanks for your inputs!!!!!!

Comment