Hello,
I am trying to use the result of my list in another class.
public class NEWSDBA : Indicator
{
//should i declare private my listm here??
protected override void OnBarUpdate()
{
foreach (var item in listm)
{
//use the values inside the listm declared in
//protected override void OnRender
}
}
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
var listm = new List<double>();
// use values of listm in protected override void OnBarUpdate()
}
}