--- title: Crypto Dashboard page-header: Crypto Dashboard page-menu: dashboards.crypto page-libs: [apexcharts] layout: default permalink: dashboard-crypto.html --- {% assign btc = crypto-currencies | where: "symbol", "BTC" | first %} {% assign ltc = crypto-currencies | where: "symbol", "LTC" | first %} {% assign eth = crypto-currencies | where: "symbol", "ETH" | first %} {% assign xmr = crypto-currencies | where: "symbol", "XMR" | first %} {% assign btc_balance = 2.30 %} {% assign btc_price_num = btc.price | remove: "$" | remove: "," | plus: 0 %} {% assign total_usd_raw = btc_price_num | times: btc_balance %} {% assign ltc_price_num = ltc.price | remove: "$" | remove: "," | plus: 0 %} {% assign eth_price_num = eth.price | remove: "$" | remove: "," | plus: 0 %} {% assign xmr_price_num = xmr.price | remove: "$" | remove: "," | plus: 0 %} {% assign ltc_btc = ltc_price_num | divided_by: btc_price_num %} {% assign eth_btc = eth_price_num | divided_by: btc_price_num %} {% assign xmr_btc = xmr_price_num | divided_by: btc_price_num %}
Total balance
{% include "ui/avatar.html" icon="currency-dollar" %}
${{ total_usd_raw | round | format_number }} {{ btc_balance }} {{ btc.symbol }}
{% include "ui/trending.html" value=btc.p24h %} Since last week
USD/BTC
{% include "ui/avatar.html" icon="currency-bitcoin" %}
{{ btc.price }} {{ btc.price}}
Volume: {{ btc.volume-24h }}
LTC/BTC
{% include "ui/avatar.html" icon="currency-litecoin" %}
{{ ltc_btc | round: 8 }} {{ ltc.price }}
Volume: {{ ltc.volume-24h | remove: "$" }}
ETH/BTC
{% include "ui/avatar.html" icon="currency-ethereum" %}
{{ eth_btc | round: 8 }} {{ eth.price }}
Volume: {{ eth.volume-24h | remove: "$" }}
XMR/BTC
{% include "ui/avatar.html" icon="currency-monero" %}
{{ xmr_btc | round: 8 }} {{ xmr.price }}
Volume: {{ xmr.volume-24h | remove: "$" }}
Markets
{% include "ui/card-dropdown.html" %}
{% for market in crypto-markets limit: 10 %} {% endfor %}
{% include "ui/switch-icon.html" icon="star" icon-b-color="yellow" variant="slide-up" %} Coin Price Volume Change
{% include "ui/switch-icon.html" icon="star" icon-b-color="yellow" variant="slide-up" %} {{ market.coin }} {{ market.price }} {{ market.volume }} {% include "ui/trending.html" value=market.change %}
LTC/BTC
{% include "ui/nav-segmented.html" items="1m,5m,30m,1h,1d" name="timeframe" size="sm" default=2 %}
{% include "ui/chart.html" chart-id="dashboard-crypto-candlestick" height=28 %}
Operations
{% include "ui/nav-segmented.html" items="Buy,Sell,Send" name="operations" size="sm" %}

Place new order:

The final amount could change depending on current market conditions.

Sell Orders
{% for order in crypto-orders.sell_orders %} {% endfor %}
Price BTC Sum(BTC)
{{ order.price }} {{ order.btc }} {{ order.sum }}
Buy Orders
{% for order in crypto-orders.buy_orders %} {% endfor %}
Price BTC Sum(BTC)
{{ order.price }} {{ order.btc }} {{ order.sum }}