Portfolio Overview

Your portfolio is up 3.2% in the last 7 days. You currently own shares in 4 premium assets.

$8,425.75
Portfolio Value
3.2%
$1,245.50
Total Profit
12.8%
4
Assets Owned
0%
12,485
PVA Coins
5.7%

Portfolio Performance

Asset Allocation

  • Precious Gems
    $2,850.00
    33.8%
  • Luxury Watches
    $2,460.00
    29.2%
  • Fine Art
    $2,750.00
    32.6%
  • Other
    $365.75
    4.4%

Your Holdings

Asset Value Ownership 24h Change Actions
Total Return
+18.7%
+2.4% vs. benchmark
Volatility
12.3%
-3.1% vs. benchmark
Sharpe Ratio
1.42
+0.18 vs. benchmark
Diversification
76%
Optimal range

Recent Transactions

    // Fetch and render recent transactions async function fetchAndRenderTransactions() { try { const response = await fetch('/api/transactions'); const data = await response.json(); const list = document.querySelector('.transaction-list'); list.innerHTML = ''; if (Array.isArray(data.transactions)) { data.transactions.forEach(tx => { const li = document.createElement('li'); li.className = 'transaction-item'; li.innerHTML = `
    ${tx.assetName || 'Asset'}
    ${tx.date ? new Date(tx.date).toLocaleString() : ''}
    ${tx.shares ? tx.shares + ' shares' : (tx.ownership ? tx.ownership + '% ownership' : '')}
    $${tx.amount ? tx.amount.toLocaleString() : '0.00'}
    ${tx.status ? tx.status.charAt(0).toUpperCase() + tx.status.slice(1) : 'Completed'}
    `; list.appendChild(li); }); } else { list.innerHTML = '
  • No recent transactions found.
  • '; } } catch (err) { console.error('Error fetching transactions:', err); const list = document.querySelector('.transaction-list'); if (list) list.innerHTML = '
  • Error loading transactions.
  • '; } }