{{-- resources/views/dashboard/trade/future.blade.php --}} @extends('layouts.user') @section('title', 'Future Trade Simulation') @section('styles') @endsection @section('content')
| ID | Symbol | Side | Entry | Exit | PnL | Credited | Closed At |
|---|---|---|---|---|---|---|---|
| #{{ $trade->id }} | {{ $trade->symbol }} | {{ strtoupper($trade->side) }} | {{ number_format((float)$trade->entry_price, 4) }} | {{ number_format((float)$trade->exit_price, 4) }} | {{ (float)$trade->pnl >= 0 ? '+' : '' }}{{ number_format((float)$trade->pnl, 4) }} | ${{ number_format((float)$trade->credited_amount, 2) }} | {{ $trade->closed_at?->format('Y-m-d H:i:s') }} |
| No closed trades yet. | |||||||