http://www.ninjatrader.com/support/forum/showthread.php?t=5790
Unfortunately, NT is displaying the following error when I try to compile:
The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)
I have included the ArrayList in variables as follows:
private ArrayList myDataPoints = new ArrayList();
which is essentially the same as in the reference sample:
private ArrayList stopLossTokens = new ArrayList();
The help code CS0246 is displayed which links to CS0234 which talks about an error that occurs when an imported dll no longer exists or has been removed.
Any ideas on what is wrong?
When I was entering the code, the only Array-type classes that show in the auto-complete dropdown are ArrayConverter, ArraySegment<> and ArrayTypeMismatchException. Do I need somehow to extend NT's coding capacities to use an ArrayList?

Comment