@extends('layouts.app') @section('title', 'Signal History') @section('page-title', 'Signal History') @section('content')

Signal History

Last 100 signals
@forelse($history as $sig) @php $ind = is_string($sig['indicators'] ?? '') ? json_decode($sig['indicators'] ?? '{}', true) : ($sig['indicators'] ?? []); @endphp @empty @endforelse
Asset Platform Direction Timeframe Strength RSI MACD Time
{{ $sig['asset'] }} {{ $sig['platform'] ?? 'quotex' }} {{ $sig['direction'] }} {{ $sig['timeframe'] }}
{{ $sig['strength'] ?? 0 }}%
{{ isset($ind['rsi']) ? $ind['rsi'] : '-' }} {{ isset($ind['macd']) ? number_format($ind['macd'], 6) : '-' }} {{ $sig['created_at'] ?? $sig['timestamp'] ?? '-' }}
No signal history yet.
@endsection