@include('dashboard.user.partials.trade')
| Market Asset |
Type |
Mode |
Amount |
Entry Price |
Exit Price |
Status |
Action |
@foreach ($openTrades as $trade)
| {{ $trade->market->asset }} |
{{ $trade->type->label() }} |
{{ $trade->mode->label() }} |
{{ formatAmount($trade->amount) }} |
{{ formatAmount($trade->entry_price) }} |
{{ formatAmount($trade->exit_price) }} |
{{ $trade->status->label() }}
|
Close
|
@endforeach
| Market Asset |
Type |
Mode |
Amount |
Entry Price |
Exit Price |
Status |
Closed At |
@foreach ($closedTrades as $trade)
| {{ $trade->market->asset }} |
{{ $trade->type->label() }} |
{{ $trade->mode->label() }} |
{{ formatAmount($trade->amount) }} |
{{ formatAmount($trade->entry_price) }} |
{{ formatAmount($trade->exit_price) }} |
{{ $trade->status->label() }}
|
@if ($trade->closed_at)
{{ $trade->closed_at->diffForHumans() }}
@endif
|
@endforeach
@endsection