So I did manage to get my calculations from the data but I cant figure how to plot a double value that I ended up with:
protectedoverridevoid Initialize()
//...... other stuff ...
double _sUM_diff = (_sUM_diff12 - _sUM_diff7);
//Getting method name errors when this is tried
Add(new Plot(Color.Orange, "_sUM_diff"));
//and also tried variations of this with errors in 'variables' and 'method'
//from the NT6.5 help files
Add(_sUM_diff);
------------------------------------------------------------------
Obviously I am not seeing what I should.
Any input is appreciated,
Jon

Comment