@extends('layouts.admin') @section('contents')

AI Bots Add Bot

{{-- summary --}}

Total Bots

{{ $bots->count() }}

Total Activations

{{ $activations->count() }}

Total Trades

{{ $histories->count() }}

Portfolio

{{ formatAmount($activations->sum('capital')) }}

Portfolio Balance

{{ formatAmount($activations->sum('balance')) }}
@forelse ($bots as $bot)
{{ $bot->name }}

Trading Portfolio

{{ formatAmount($bot->min) . ' - ' . formatAmount($bot->max) }}

Avg. Daily PNL

{{ $bot->daily_min . '% - ' . $bot->daily_max . '%' }}

Trading Period

{{ $bot->duration . $bot->duration_type }}

@empty
Bots coming soon ...
@endforelse
@foreach ($bots as $bot) @endforeach
@endsection @section('scripts') @foreach ($activations as $item) @endforeach {{-- currently used --}} {{-- view trading history chart --}} {{-- delete bot --}} {{-- manage activation --}} {{-- delete history --}} @endsection