creating a c# List of myClass
public class myIndicator : Indicator
{
List<myClass> myList = new List<myClass>();
protected override void OnBarUpdate()
{
if (IsFirstTickOfBar)
{
myClass myItem = new myClass()
myList.Add(myItem);
}
}
}
public class myClass
{
int myData;
}
This issue could be something else? but I just want to ask if this could potentially conflict with NT8 (version 8.1.2.1)

Comment