{{ formatAmount(user()->balance) }}
{{ formatAmount($profit_fig + $capital) }}
No of Bots
{{ user()->botActivations()->count() }}
My Bots
My Bots
Portfolio Balance
{{ $bot->bot->name }} @if ($bot->status == 'active') @else @endif
PNL @if ($bot->profit < 0) {{ round(($bot->profit / ($bot->capital + 0.0001)) * 100, 2) }}% @else +{{ round(($bot->profit / ($bot->capital + 0.0001)) * 100, 2) }}% @endif
Empty Record. No Record found!
@endforelseMy Recent trades
| AI Bots | Trading Pairs | Profit/Loss | @forelse ($histories as $history)||
|---|---|---|---|---|
|
{{ $history->botActivation->bot->name }}
|
@if ($history->profit < 0)
{{ $history->pair }} {{ number_format((($history->exit_price - $history->entry_price) / $history->entry_price) * 100, 2) }}% |
{{ formatAmount(str_replace('-', '', $history->profit)) }} |
@else
{{ $history->pair }} +{{ number_format((($history->exit_price - $history->entry_price) / $history->entry_price) * 100, 2) }}% |
+{{ formatAmount(str_replace('-', '', $history->profit)) }} |
@endif
My History
| AI Bots/ID | Holdings | Date | Time | @forelse ($deposits_and_withdrawals as $allData) |
|---|---|---|---|---|
|
{{ getCurrencyByCoin($allData->deposit_coin_id)->name }} {{ $allData->wallet_address ?? $allData->payment_wallet }} |
{{ formatAmount($allData->amount) }} {{ $allData->converted_amount }} {{ getCurrencyByCoin($allData->deposit_coin_id)->code }}/ {{ getCurrencyByCoin($allData->deposit_coin_id)->network ?? getCurrencyByCoin($allData->deposit_coin_id)->code }} |
{{ date('d-m-y', strtotime($allData->created_at)) }} |
{{ date('H:i:s A', strtotime($allData->created_at)) }} |
@if ($allData->status == 'pending')
{{ $allData->status }} {{ $allData->status }} {{ $allData->status }} {{ $allData->status }} |
| Empty Record. No Record found! |
| AI Bots/ID | Holdings | Date | Time | @forelse ($withdrawals as $withdrawal) |
|---|---|---|---|---|
|
{{ getCurrencyByCoin($withdrawal->deposit_coin_id)->name }} {{ $withdrawal->wallet_address ?? $withdrawal->payment_wallet }} |
{{ formatAmount($withdrawal->amount) }} {{ $withdrawal->converted_amount }} {{ getCurrencyByCoin($withdrawal->deposit_coin_id)->code }}/ {{ getCurrencyByCoin($withdrawal->deposit_coin_id)->network ?? getCurrencyByCoin($withdrawal->deposit_coin_id)->code }} |
{{ date('d-m-y', strtotime($withdrawal->created_at)) }} |
{{ date('H:i:s A', strtotime($withdrawal->created_at)) }} |
@if ($withdrawal->status == 'pending')
{{ $withdrawal->status }} {{ $withdrawal->status }} {{ $withdrawal->status }} {{ $withdrawal->status }} |
| Empty Record. No Record found! |
| AI Bots/ID | Holdings | Date | Time | @forelse ($deposits as $deposit) |
|---|---|---|---|---|
|
{{ getCurrencyByCoin($deposit->deposit_coin_id)->name }} {{ $deposit->wallet_address ?? $deposit->payment_wallet }} |
{{ formatAmount($deposit->amount) }} {{ $deposit->converted_amount }} {{ getCurrencyByCoin($deposit->deposit_coin_id)->code }}/ {{ getCurrencyByCoin($deposit->deposit_coin_id)->network ?? getCurrencyByCoin($deposit->deposit_coin_id)->code }} |
{{ date('d-m-y', strtotime($deposit->created_at)) }} |
{{ date('H:i:s A', strtotime($deposit->created_at)) }} |
@if ($deposit->status == 'waiting')
{{ $deposit->status }} {{ $deposit->status }} {{ $deposit->status }} {{ $deposit->status }} |
| Empty Record. No Record found! |