else if (Close[0] > (Open[2]*percmove))
{
EnterLong(Convert.ToInt32(Math.Round(1000/Close[0])));
}
else if (Close[0] > (Open[3]*percmove))
{
EnterLong(Convert.ToInt32(Math.Round(1000/Close[0])));
}
else if (Close[0] > (Open[4]*percmove))
{
EnterLong(Convert.ToInt32(Math.Round(1000/Close[0])));
}
else if (Close[0] > (Open[5]*percmove))
{
EnterLong(Convert.ToInt32(Math.Round(1000/Close[0])));
}

Comment