{{$user->balances->sum('balance')}} $
Total Balance
{{$totalInvestment}} $
Total Investment
{{$totalProfitLoss}} $
Total Profit/Loss
{{$totalPercentageGain}} %
Total Percentage Gain
{{$totalTrades}}
Total Trades
{{$duration}} Month
Duration
Buy/Sell
Buy: {{$buy}}
Sell: {{$sell}}
Profit By Instrument
    @foreach ($profitableTradePairNames as $key => $name) @if ($key < 5)
  • {{$name}}
  • @elseif($key == 5)
  • Others
  • @endif @endforeach
Loss By Instrument
    @foreach ($loosableTradePairNames as $key => $name) @if ($key < 5)
  • {{$name}}
  • @elseif($key == 5)
  • Others
  • @endif @endforeach
Profit / Loss Ratio
Profit: {{$totalProfit}}
Loss: {{$totalLoss}}
@foreach($trades as $log) @endforeach
Order Open time Close time Pair Type Volume Open Price Close Price Stop Loss Take Profit Profit
{{$log->id}} {{$log->created_at}} {{$log->finished_at}} {{$log->pair->symbol}} @if($log->hilow == 1) Buy @else Sell @endif {{$log->amount}} {{$log->price_was}} {{$log->price}} {{$log->stop_loss}} {{$log->take_profit}} @if($log->profit <= 0) {{number_format($log->profit, 3)}} @else {{number_format($log->profit, 3)}} @endif