Algorithmic Trading with NinjaTrader
if (Close[0] <= Position.AveragePrice - TickSize * StopLossValue)
? 1, what is the value of Position.AveragePrice ?
** is it the current price on the market for the position i'm holding ?
? 2, what is the value of the TickSize ?
** is it a number like 0,5 for example ?
? 3, whx to multiply here with StopLossValue ?
** is it to convert the TickSize to a market price ?