I have a trading Strategy with 4 set Conditions. I only want to utilize the following script ExitOnClose = true for 2 of those conditions, which is Condition 3 and 4 below. Is this possible?
// Condition set 1
if (CrossAbove(...))
{
EnterLong(DefaultQuantity,"EnterLong");
}
// Condition set 2
if (CrossBelow(...))
{
EnterShort(DefaultQuantity,"");
}
// Condition set 3
if (CrossBelow(...))
{
EnterShort(DefaultQuantity,"");
}
// Condition set 4
if (CrossAbove(...))
{
EnterLong(DefaultQuantity,"");
}
Thank you,

Comment