{{-- File: resources/views/insights/trade-tracking.blade.php --}} @extends('layouts.app') @section('title', 'CLEDA Trade Tracking') @section('content')

Trade Tracking Dashboard

Monitor your AI-recommended trades and performance

AI Powered Real-time P&L Tracking
Total P&L
${{ number_format($totalProfitLoss, 2) }}
Win Rate: {{ $winRate }}%
{{ $totalTrades }}
Total Trades
Active positions
{{ $profitableTrades }}
Profitable
Winning trades
{{ $winRate }}%
Win Rate
Success ratio
${{ number_format(abs($totalProfitLoss), 0) }}
Total P&L
{{ $totalProfitLoss >= 0 ? 'Profit' : 'Loss' }}

Quick Actions

Add New Trade

Active Trades

Monitor your current positions and performance

@if($trades->count() > 0)
@foreach($trades as $trade) @endforeach
Trade Details Entry Current P&L Performance Actions
{{ $trade->ticker }} {{ $trade->action }} {{ $trade->type }}
{{ $trade->quantity }} {{ $trade->type === 'STOCK' ? 'shares' : 'contracts' }}
@if($trade->type !== 'STOCK')
Strike: ${{ number_format($trade->strike_price, 2) }} | Exp: {{ \Carbon\Carbon::parse($trade->expiration_date)->format('M j, Y') }}
@endif
{{ \Carbon\Carbon::parse($trade->trade_date)->format('M j, Y') }}
${{ number_format($trade->entry_price, 2) }}
Cost: ${{ number_format($trade->cost_estimate, 2) }}
${{ number_format($trade->current_price, 2) }}
@php $change = $trade->current_price - $trade->entry_price; $changePercent = $trade->entry_price > 0 ? ($change / $trade->entry_price) * 100 : 0; @endphp {{ $change >= 0 ? '+' : '' }}${{ number_format($change, 2) }} ({{ $changePercent >= 0 ? '+' : '' }}{{ number_format($changePercent, 1) }}%)
{{ $trade->profit_loss >= 0 ? '+' : '' }}${{ number_format($trade->profit_loss, 2) }}
{{ $trade->profit_loss_percentage >= 0 ? '+' : '' }}{{ number_format($trade->profit_loss_percentage, 1) }}%
{{ $trade->confidence }}
{{ $trade->risk }} Risk
Target: {{ $trade->target_return }}%
@else

No Active Trades

Start tracking your AI recommendations to see performance here

Add Your First Trade
@endif
@endsection