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

Your capital is at risk

Accuracy
{{ $response->accuracy }}
Profitability
{{ $response->profability }}
Maximum Drawdown
{{ $response->max_drawdown }}
Martingale
{{ $response->martingle }}
Take Profit
{{ $response->take_profit }}
Min Deposit
${{ $response->min_deposit }}
Annualized Return
{{ $response->annualized_return }}
Sharpe Ratio
{{ $response->sharpe_ratio }}
Profit Factor
{{ $response->profit_factor }}
Win Rate
{{ $response->win_rate }}
Stop Loss
{{ $response->stop_loss }}
{{--
Stop Loss
{{ $response->stop_loss }}
--}}
Pros
    @foreach ($response->pros as $pro)
  • {{ $pro->text }}
  • @endforeach
Cons
    @foreach ($response->cons as $con)
  • {{ $con->text }}
  • @endforeach
@foreach($response->headings as $heading) {!! $heading->description !!} @endforeach
@if($response->video_link)
@endif
FAQ's
@foreach ($response->faqs as $faq)

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