{% extends "base.html" %} {% block title %}{{ coin.name }} ({{ coin.symbol }}){% endblock %} {% block content %}
Harga ({{ pc }})
{% if is_us and profile.current_price_usd %} $ {{ profile.current_price_usd|float|price }} ~Rp {{ profile.current_price_idr|float|price if profile.current_price_idr else '-' }} {% else %} {{ ('Rp ' ~ (profile.current_price_idr|float|price)) if profile.current_price_idr else '-' }} {% endif %}
Perubahan 24j
{{ (profile.price_change_24h|float|spct2) if profile.price_change_24h else '-' }}
Market Cap ({{ pc }})
{% if is_us and profile.market_cap_usd %} $ {{ profile.market_cap_usd|float|abbr }} {% else %} {{ ('Rp ' ~ (profile.market_cap_idr|float|idr)) if profile.market_cap_idr else '-' }} {% endif %}
Volume 24j ({{ pc }})
{% if is_us and profile.total_volume_usd %} $ {{ profile.total_volume_usd|float|abbr }} {% else %} {{ ('Rp ' ~ (profile.total_volume_idr|float|idr)) if profile.total_volume_idr else '-' }} {% endif %}
Terakhir sync: {{ profile.fetched_at|wib_short }}
{% endif %} {% endif %}Sync lengkap: profile, icon, dan OHLCV data dari CoinGecko.