@forelse ($histories as $history)
{{ $history->botActivation->bot->name }}
{{ $history->botActivation->user->username }}
View Chart
Exit Time (UTC)
{{ date('d-m-y H:i:s', $history->timestamp) }}
Trading Pair
{{ $history->pair }}
Entry Price
{{ $history->entry_price }}
Exit Price
{{ $history->exit_price }}
@if ($history->profit < 0)
-{{ formatAmount(str_replace('-', '', $history->profit)) }}
{{ number_format((($history->exit_price - $history->entry_price) / $history->entry_price) * 100, 2) }}%
@else
+{{ formatAmount($history->profit) }}
+{{ number_format((($history->exit_price - $history->entry_price) / $history->entry_price) * 100, 2) }}%
@endif
@empty
Empty Record. No trading history found!
@endforelse