if (orderId.Length > 0)
{
string[] status = GetAtmStrategyEntryOrderStatus(orderId);
if (status.GetLength(0) > 0)
{
if (status[2] == "Working"
&& GetCurrentAsk() > //NEED THE CURRENT ATM ENTRY ORDER PRICE RIGHT HERE
//&& OTHER ENTRY CONDITIONS)
)
{
AtmStrategyChangeEntryOrder(GetCurrentAsk() - OE_Offset * TickSize, 0, "orderId");
}
}
}
Thanks
DaveN

Comment