@extends('layouts.app') @section('title', 'Live Signals') @section('page-title', 'Live Signals') @section('content')
All @foreach(['5s','10s','30s','1m','5m'] as $tf) {{ $tf }} @endforeach
@forelse($signals as $signal)
{{ $signal['asset'] }}
{{ $signal['direction'] }}
{{ $signal['timeframe'] }} {{ $signal['platform'] ?? 'quotex' }} ${{ number_format($signal['current_price'] ?? 0, 5) }}
@php $ind = $signal['indicators'] ?? []; @endphp @if(isset($ind['rsi'])) RSI: {{ $ind['rsi'] }} @endif @if(isset($ind['macd'])) MACD: {{ number_format($ind['macd'], 6) }} @endif @if(isset($ind['stoch_k'])) Stoch K: {{ $ind['stoch_k'] }} @endif @if(isset($ind['cci'])) CCI: {{ $ind['cci'] }} @endif @if(isset($ind['ema9'])) EMA9: {{ number_format($ind['ema9'], 5) }} @endif @if(isset($ind['ema21'])) EMA21: {{ number_format($ind['ema21'], 5) }} @endif
Strength {{ $signal['strength'] ?? 0 }}%
{{ $signal['timestamp'] ?? '' }}
@empty

No signals yet. Make sure the Python backend is running.

@endforelse
@endsection @section('scripts') @endsection