I know how to do it with doubles:
private double[] MyArray;
protected override void Initialize()
{
MyArray = new double[100];
}
//then I can access them using MyArray[x]
MyOrders["stop1"] = ExitLong(.....) MyOrders["stop2"] = ExitLong(.....)
foreach (string oName in MyOrders) {
xyz= MyOrders[oName ].Quantity;
// etc..
}

Comment