{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
Tracked {{ total_tracked }}
Watchlist {{ watchlist|length }}
Signals {{ active_signal_count }}
BTC
Source
Last Sync
Sentiment
{% if portfolio_summary.count > 0 %}

Positions

{{ portfolio_summary.count }}

Total Invested

Rp {{ portfolio_summary.total_invested|idr }}

IDR (gabungan)

Current Value

Rp {{ portfolio_summary.total_current|idr }}

Unrealized P&L

{{ portfolio_summary.total_unrealized|sidr }} ({{ portfolio_summary.total_return_pct|spct }})

Realized P&L

{{ portfolio_summary.total_realized|sidr }}

{% if portfolio_items|length > 1 %}

Alokasi Portfolio

Unrealized P&L per {{ item_label }}

{% endif %}

Posisi Portfolio

Detail →
{% for item in portfolio_items %} {% set dcs = '$ ' if item.asset_type == 'stock_us' else 'Rp ' %} {% endfor %}
{{ item_label }} Jumlah Avg Beli Harga Kini Nilai P&L
{% set _ic = coin_icon(item.coin) if item.coin else None %} {% if _ic %} {% endif %} {{ item.coin_symbol }} {{ item.quantity|idr8 }}{{ dcs }}{{ item.avg_buy_price|price }} {{ dcs }}{{ item.current_price|price }} {{ dcs }}{{ item.current_value|idr }} {{ item.unrealized_pnl|sidr }}
{% endif %} {% if chart_coins %}

Grafik Harga

Belum ada data OHLCV untuk {{ item_label|lower }} ini.

Sync data terlebih dahulu dari halaman detail {{ item_label|lower }}.

{% endif %} {% if chart_coins %}

Skor Sinyal

{% else %}

Belum ada {{ item_label|lower }} di watchlist atau portfolio.

Tambahkan {{ item_label|lower }} ke Watchlist atau Portfolio untuk melihat analisis.

{% endif %} {% if signals %}

Sinyal Aktif

Lihat Semua →
{% for s in signals %} {% endfor %}
{{ item_label }} Signal Score Confidence Safety Strategy Entry SL TP1 Time
{{ s.asset_id }} {{ s.signal_type }} {{ s.score|num1 }} {{ s.confidence }} {{ s.safety_rating or '-' }} {{ s.recommended_strategy or '-' }} {{ s.entry_price|price if s.entry_price else '-' }} {{ s.stop_loss|price if s.stop_loss else '-' }} {{ s.take_profit_1|price if s.take_profit_1 else '-' }} {{ s.created_at|wib_short }}
{% elif not chart_coins %} {% else %}

Belum ada sinyal aktif. Jalankan analisis dari halaman Analysis.

{% endif %} {% if watchlist_data %}

Watchlist

Kelola →
{% for item in watchlist_data %} {% endfor %}
{{ item_label }} Harga 24h 7d Aksi
{% set _ic3 = coin_icon(item.coin) if item.coin else None %} {% if _ic3 %} {% endif %} {{ item.asset.symbol|upper if item.coin else item.asset_id }} {% set wcs = '$ ' if item.coin and item.asset.asset_type == 'stock_us' else 'Rp ' %} {% if item.price %}{{ wcs }}{{ item.price|price }}{% else %}-{% endif %} {% if item.change_24h %}{{ item.change_24h|spct2 }}{% else %}-{% endif %} {% if item.change_7d %}{{ item.change_7d|spct2 }}{% else %}-{% endif %} Analisis Timeline
{% endif %}
Analisis Lengkap Timeline Portfolio Watchlist Rekomendasi Beli Export JSON
{% endblock %} {% block scripts %} {% endblock %}