if(Position.MarketPosition == MarketPosition.Long)
{
SetProfitTarget("Long RTM76", CalculationMode.Price, Math.Min(MyEntryPrice + (8*TickSize),POC));
}
I now want to dynamically adjust my Limit Order before the trade is opened. Initially, my strategy uses this to enter the order;
EnterLongLimit(1,LongTrigger,"Long 3PB");
To have it adjust the order dynamically, I know the "if" portion, but what would I put between the brackets below?
if(Position.MarketPosition == MarketPosition.Flat)
{
What goes here?
}
Thanks
Safetrading

Comment