EnterLong() returns null when I already have a prior existing entry that has not yet been closed. How can I fix this?
Here is the code
private ArrayList orderArray = new ArrayList();
protected override void OnBarUpdate()
{
orderArray.Add(EnterLong(100000,Time[0].ToString()));
}
Upon setting the debugging on in Visual studio, when I am stepping through the code, on the second iteration of the above command, EnterLong returns a null. Also No error is thrown.
Regards,
Eklavya

Comment