@extends('website.layout') @section('title', 'Index') @section('content')
@if (isset($response->rating)) {{ $response->rating }}.0 @endif
@if (isset($response->name))
{{ $response->name }}
@endif
@if (isset($response->introduction)) {!! $response->introduction !!} @endif
Open an account

Your capital is at risk

Accuracy
@if (isset($response->accuracy))
{{ $response->accuracy }}
@endif
Profitability
@if (isset($response->profability))
{{ $response->profability }}
@endif
Maximum Drawdown
@if (isset($response->max_drawdown))
{{ $response->max_drawdown }}
@endif
Average Drawdown
@if (isset($response->avg_drawdown))
{{ $response->avg_drawdown }}
@endif
Drawdown Duration
@if (isset($response->drawdown_duration))
{{ $response->drawdown_duration }}
@endif
Annualized Return
@if (isset($response->annualized_return))
{{ $response->annualized_return }}
@endif
Sharpe Ratio
@if (isset($response->sharpe_ratio))
{{ $response->sharpe_ratio }}
@endif
Profit Factor
@if (isset($response->profit_factor))
{{ $response->profit_factor }}
@endif
Win Rate
@if (isset($response->win_rate))
{{ $response->win_rate }}
@endif
@if (isset($response->tabs)) @endif
Pros
    @if (isset($response->pros)) @foreach ($response->pros as $pro)
  • {{ $pro->text }}
  • @endforeach @endif
Cons
    @if (isset($response->cons)) @foreach ($response->cons as $con)
  • {{ $con->text }}
  • @endforeach @endif
@foreach ($response->headings as $heading) {!! $heading->description !!} @endforeach
@if (isset($response->video_link)) @endif
FAQ's
@if (isset($response->faqs)) @foreach ($response->faqs as $faq)

{!! $faq->description !!}
@endforeach @endif
@include('website.partials.footer') @endsection