Welcome 🎉

Trading illustration
{{ $userSubscriptions->count() }} Active Subs
{{ number_format($totalInvestment, 2) }} $ Total Investment
{{ $winRate ?? '0' }}% Win Rate
{{ number_format($totalProfit, 2) }} $ Total Profit

Bot History

View All
@foreach($userSubscriptions as $subscription)

{{ $subscription->bot->name }}

Active
Amount

${{ number_format($subscription->amount, 2) }}

Result

Pending

@endforeach @foreach($trades as $trade)

{{ $trade->bot->name }}

Completed
Amount

${{ number_format($trade->amount, 2) }}

Result

@if($trade->result === 'win') +${{ number_format($trade->profit, 2) }} @else -${{ number_format($trade->profit, 2) }} @endif

@endforeach @if($userSubscriptions->isEmpty() && $trades->isEmpty())
No bot trades found!
@endif