@include('dashboard.admin.user.partials.account_options_and_status')
- Market Asset
- {{ $trade->market->asset }}
- Type
- {{ $trade->type->label() }}
- Mode
- {{ $trade->mode->label() }}
- Amount
- {{ formatAmount($trade->amount) }}
- Entry Price
- {{ formatAmount($trade->entry_price) }}
- Exit Price
- {{ formatAmount($trade->exit_price) }}
- Profit
- {{ formatAmount($trade->profit) }}
- Status
- {{ $trade->status->label() }}
@if ($trade->opened_at)
- Opened At
-
{{ $trade->opened_at->diffForHumans() }}
@endif
@if ($trade->closed_at)
- Closed At
-
{{ $trade->closed_at->diffForHumans() }}
@endif
@endsection