if (CrossAbove(Close, SupportAndResistanceMTF(1, PeriodType.Day).R1, 1))
{
EnterShort(DefaultQuantity, "short2");
}
if (Close[0] > SupportAndResistanceMTF(1, PeriodType.Day).R3[0])
ExitShort("", "");
However my problem is that if my trade is held until the indicator draws a new line the next day then i would like to still have my stop loss on the r3 from the day of entry.
Any help on how to do this would be really appreciated!
Thanks

Comment