@extends('dashboard.user.layouts.app') @section('content') @include('dashboard.user.partials.portfolio_style') @include('dashboard.user.partials.signal_style') @include('dashboard.user.partials.toggle_balance_style')

{{ $title }}

@if (!$user->kycApproved())
Security Illustration

Verify Your Account

All KYC information is securely processed in compliance with applicable data protection regulations.

Get Started
@endif
Portfolio Overview
{{ $user->status->label() }}
Total Equity
{{ currency($user->currency) . formatAmount($user->balance, 2) }}
Total Profit +{{ currency($user->currency) . formatAmount($totalProfits) }}
Open Trades {{ $openTrades }}
Deposits {{ currency($user->currency) . formatAmount($totalDeposits) }}
@php $strength = $user->signal_strength; // 0-100 @endphp
Signal Strength
{{ $strength }}% @if ($strength >= 70) Strong @elseif($strength >= 40) Moderate @else Weak @endif

Signals above 70% indicate favorable market conditions with reduced risk.

@include('dashboard.user.partials.trade')
@endsection