@extends('layouts.app') @section('style') @endsection @section('content')

Reports

3 Minute Trade

@if(count($three_minute_trade) > 0)
@foreach ($three_minute_trade as $item) @endforeach
Ticket Account No Symbol Open Time Close Time Profit
{{ $item->TICKET }} {{ $item->LOGIN }} {{ $item->SYMBOL }} {{ $item->OPEN_TIME }} {{ $item->CLOSE_TIME }} $ {{ $item->PROFIT }}
@else


Sorry! No Data Found In This Daterange.




@endif

High Volume Trade

@if(count($high_volume_trade) > 0)
@foreach ($high_volume_trade as $item) @endforeach
SYMBOL Volume
{{ $item->SYMBOL }} {{ (float)$item->TOTAL_VOLUME }}
@else


Sorry! No Data Found In This Daterange.




@endif
@endsection @section('script') {{-- {{ Html::script('custom/eModal/eModal.js') }} --}}