I have been doing everything to date in the wizard (and have learnt a lot about its nuances with setting things out). As most people here use the script I have attached that.
Thanks in advance.
// Condition set 1
if (Position.MarketPosition == MarketPosition.Flat
&& Close[0] > Open[0])
{
DrawArrowUp("Condition Met" + CurrentBar, false, 0, (Low[0]) * (1 + -0.02), Color.Gray);
EnterLongStop(DefaultQuantity, Close[0], "");
Variable0 = Low[0];
}
// Condition set 2
if (Position.MarketPosition != MarketPosition.Flat)
{
ExitLongLimit((Position.AvgPrice) * (1 + 0.03), "", "");
ExitLongStop(Variable0, "", "");
}

Comment