@lang('sistema.trade_report.contact_tel') +852 300 85680
@lang('sistema.trade_report.see_reverse')
@lang('sistema.trade_report.see_reverse')
@lang('sistema.trade_report.your_statement')
| {{ $primary_client->full_name }} |
|
|||
| {{ $primary_client->address }} |
|
|||
| {{ $primary_client->state_name? $primary_client->state_name->name : '' }} |
|
|||
| {{ $primary_client->city_name ? $primary_client->city_name->name : '' }} {{ $primary_client->zip_code ? ( ', ' .$primary_client->zip_code) : '' }}{{ $primary_client->country_name ? ( ' - ' . $primary_client->country_name->name ) : '' }} |
|
|||
|
{{ date('d M Y', strtotime($data['info']['from_date'])) }} @lang('sistema.trade_report.to') {{ date('d M Y', strtotime($data['info']['upto_date'])) }}
| @lang('sistema.trade_report.account_name') | @lang('sistema.trade_report.product') | @lang('sistema.trade_report.client_code') | @lang('sistema.trade_report.sheet_number') |
| {{ $primary_client->full_name }} | {{ $data['account']->broker ? $data['account']->broker->broker : '-' }} | {{ $data['account']->account_number }} |
@lang('sistema.trade_report.summary_block', ['name' => ($data['account']->broker ? $data['account']->broker->broker : '-')])
| @lang('sistema.trade_report.ticket') | @lang('sistema.trade_report.type') | @lang('sistema.transaction.instrument') | @lang('sistema.transaction.item') | @lang('sistema.transaction.opening_date') | @lang('sistema.trade_report.open_time') | @lang('sistema.trade_report.open_price') | @lang('sistema.trade_report.conversion_opening') | @lang('sistema.transaction.closing_date') | @lang('sistema.trade_report.close_time') | @lang('sistema.trade_report.close_price') | @lang('sistema.trade_report.conversion_closing') | @lang('sistema.trade_report.leverage') | @lang('sistema.transaction.stop_loss') | @lang('sistema.transaction.contracts') | @lang('sistema.transaction.facial_value') | @lang('sistema.transaction.warranty') | @lang('sistema.transaction.commission') | @lang('sistema.trade_report.net_result') | @lang('sistema.trade_report.balance') |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @lang('sistema.trade_report.opening_balance') @lang('sistema.trade_report.balance_forward'): {{ number_format($opening_balance, 2, '.', ',') }} | {{ number_format($opening_balance, 2, '.', ',') }} | ||||||||||||||||||
| {{ $transaction->ticket }} | {{ session('language') == 'es' ? $transaction->transaction_type->type_es : $transaction->transaction_type->type_en }} | {{ session('language') == 'es' ? $transaction->instrument->instrument_es : $transaction->instrument->instrument_en }} | {{ session('language') == 'es' ? $transaction->item->item_es : $transaction->item->item_en }} | {{ $transaction->opening_date }} | {{ $transaction->opening_time }} | {{ number_format($transaction->opening_price,2) }} | {{ number_format($transaction->conversion_opening,2) }} | {{ $transaction->closing_date }} | {{ $transaction->closing_time }} | {{ number_format($transaction->closing_price,2) }} | {{ number_format($transaction->conversion_closing,2) }} | {{ $transaction->leverage->label }} | {{ number_format($transaction->stop_loss,2) }} | {{ $transaction->contracts }} | {{ number_format($transaction->facial_value,2) }} | {{ number_format($transaction->warranty,2) }} | {{ number_format($transaction->commission,2) }} | {{ number_format($transaction->net_result,2) }} | @php $changing_balance = $changing_balance + ($transaction->net_result); @endphp{{ number_format($changing_balance, 2, '.', ',') }} |
@lang('sistema.equity_report.equity')
| ID | @lang('sistema.equity_report.deposits') | @lang('sistema.equity_report.withdrawals') | @lang('sistema.equity_report.credits') | @lang('sistema.equity_report.expenses') | @lang('sistema.equity_report.tr_comm') | @lang('sistema.equity_report.profit_loss') | @lang('sistema.equity_report.balances') |
|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $moment_report['deposits_amount'] }} | {{ $moment_report['withdrawals_amount'] }} | {{ $moment_report['credit_amount'] }} | {{ $moment_report['expenses_amount'] }} | {{ $moment_report['commission_amount'] }} | {{ $moment_report['profil_loss_amount'] }} | @php $total_plus = $moment_report['deposits_amount'] + $moment_report['credit_amount']; $total_negative = $moment_report['withdrawals_amount'] + $moment_report['expenses_amount'] + $moment_report['commission_amount']; $total_balance = $total_plus - $total_negative + $moment_report['profil_loss_amount']; @endphp {{ $total_balance }} |
| @lang('sistema.trade_report.no_data') | |||||||