{{ t('msg-no-traders') }}
{{ t('msg-add-hint') }}| {{ t('th-symbol') }} | {{ t('th-side') }} | {{ t('th-leverage') }} | {{ t('th-pos-val') }} | {{ t('th-upnl') }} |
|---|---|---|---|---|
| {{ p.symbol }} | {{ p.side==='LONG'?t('side-long'):t('side-short') }} | {{ p.leverage }}x | ${{ fmt(p.position_value) }} | {{ p.unrealized_pnl>=0?'+':'' }}{{ fmt(p.unrealized_pnl) }} |
{{ t('msg-no-trades') }}
{{ t('msg-auto-show') }}{{ t('msg-no-transfer') }}
{{ t('msg-auto-record') }}| {{ t('th-symbol') }} | {{ t('th-side') }} | {{ t('th-leverage') }} | {{ t('th-entry-price') }} | {{ t('th-pos-value') }} | {{ t('th-upnl') }} |
|---|---|---|---|---|---|
| {{ p.symbol }} | {{ p.side==='LONG'?t('side-long'):t('side-short') }} | {{ p.leverage }}x | {{ p.entry_price }} | ${{ fmt(p.position_value) }} | {{ p.unrealized_pnl>=0?'+':'' }}{{ fmt(p.unrealized_pnl) }} |
| {{ t('th-time') }} | {{ t('th-symbol') }} | {{ t('th-side') }} | {{ t('th-price') }} | {{ t('th-amount') }} | {{ t('th-volume') }} |
|---|---|---|---|---|---|
| {{ fmtFull(td.trade_time) }} | {{ td.symbol }} | {{ td.side==='BUY'?t('side-buy'):t('side-sell') }} | {{ td.price }} | {{ td.amount }} | {{ fmt(td.price*td.amount) }} |
| {{ t('th-time') }} | {{ t('th-type') }} | {{ t('th-amount') }} | {{ t('th-balance-change') }} |
|---|---|---|---|
| {{ fmtFull(xf.detected_at) }} | {{ xf.transfer_type==='deposit'?t('transfer-deposit'):t('transfer-withdraw') }} | {{ xf.transfer_type==='deposit'?'+':'-' }}{{ fmt(xf.amount) }} | {{ fmt(xf.balance_before) }} → {{ fmt(xf.balance_after) }} |