SELL{{ formatNumber(position.strike) }} {{ position.side }}
{{ position.status === 'Open' ? 'Opened' : 'Time' }}{{ position.entry_time || '-' }}{{ position.exit_time || 'signal after gate' }}
Entry{{ formatPrice(position.entry) }}{{ formatPrice(position.entry_spot) }} FUT
LTP{{ formatPrice(position.current ?? position.exit) }}{{ position.status === 'Open' ? 'Live option tick' : 'Closed' }}
Lots{{ formatNumber(position.lots) }}Qty {{ formatNumber(position.quantity) }}
Leg OHLC
O {{ formatPrice(algoLegOhlc(position).open) }}H {{ formatPrice(algoLegOhlc(position).high) }}L {{ formatPrice(algoLegOhlc(position).low) }}C {{ formatPrice(algoLegOhlc(position).close) }}
SL{{ formatPrice(position.sl) }}{{ position.sl_kind === 'trailing' ? 'trails on candle close' : 'fixed' }}
IV{{ formatNumber(algoLegIv(position), { minimumFractionDigits: 2, maximumFractionDigits: 2 }) }}{{ algoLegQuote(position).iv ? 'Live IV' : 'Entry IV' }}
Volume{{ formatNumber(algoQuoteVolume(algoLegQuote(position))) }}
P&L{{ formatPrice(position.pnl) }}{{ formatPrice(position.pnl_points) }} pts
Status{{ position.status }}{{ position.exit_reason || algorun.lastTick || '-' }}