Upload Data
Available Components
Metrics
▶
Performance Metrics
{% for metric in available_metrics %}
{% if metric.category == 'performance' %}
{{ metric.title }}
{{ metric.description }}
{% endif %}
{% endfor %}
▶
Risk Metrics
{% for metric in available_metrics %}
{% if metric.category == 'risk' %}
{{ metric.title }}
{{ metric.description }}
{% endif %}
{% endfor %}
▶
Ratio Metrics
{% for metric in available_metrics %}
{% if metric.category == 'ratio' %}
{{ metric.title }}
{{ metric.description }}
{% endif %}
{% endfor %}
▶
Trade Statistics
{% for metric in available_metrics %}
{% if metric.category == 'trade' %}
{{ metric.title }}
{{ metric.description }}
{% endif %}
{% endfor %}
▶
Benchmark Metrics
{% for metric in available_metrics %}
{% if metric.category == 'benchmark' %}
{{ metric.title }}
{{ metric.description }}
{% endif %}
{% endfor %}
Charts
▶
Performance Charts
{% for chart in available_charts %}
{% if chart.category == 'performance' %}
{{ chart.title }}
{{ chart.description }}
{% endif %}
{% endfor %}
▶
Rolling Metrics
{% for chart in available_charts %}
{% if chart.category == 'rolling' %}
{{ chart.title }}
{{ chart.description }}
{% endif %}
{% endfor %}
▶
Returns Analysis
{% for chart in available_charts %}
{% if chart.category == 'returns' %}
{{ chart.title }}
{{ chart.description }}
{% endif %}
{% endfor %}
▶
Benchmark Comparison
{% for chart in available_charts %}
{% if chart.category == 'benchmark' %}
{{ chart.title }}
{{ chart.description }}
{% endif %}
{% endfor %}