@extends('layouts.millage') @section('title', 'Trade') @section('content')
Experience real-time trading with advanced tools and analytics. Start trading with confidence using our intuitive platform.
Total Trades
{{ number_format($stats['total_trades']) }}
Win Rate
{{ number_format($stats['win_rate'], 1) }}%
Total Profit
{{ $stats['total_profit'] >= 0 ? '+' : '' }}${{ number_format($stats['total_profit'], 2) }}
Available Balance
${{ number_format($user->account_bal, 2) }}
| Time | Pair | Type | Amount | Result | Profit/Loss |
|---|---|---|---|---|---|
| {{ $trade->created_at->diffForHumans() }} | {{ $trade->pair }} | {{ $trade->type }} | ${{ number_format($trade->amount, 2) }} |
@if($trade->status === 'active')
Active
@elseif($trade->status === 'completed')
{{ ucfirst($trade->result) }}
@else
{{ ucfirst($trade->status) }}
@endif
|
@if($trade->status === 'completed') {{ $trade->profit_amount >= 0 ? '+' : '' }}${{ number_format($trade->profit_amount, 2) }} @else -- @endif |