Skip to main content

Overview

Finanzapp’s Investment Portfolio feature provides comprehensive tools to track and analyze your investment performance. Monitor returns, compare against benchmarks, and make informed decisions with detailed historical data and ROI calculations.

Portfolio Management

ROI Analysis

Calculate return on investment with automatic performance metrics

Historical Tracking

View complete investment history with gains and losses over time

Benchmark Comparison

Compare your portfolio performance against market indices

Asset Allocation

Visualize your portfolio distribution across different asset classes

Getting Started

1

Add Investments

Navigate to the Investments section and click “Add Investment” to record your holdings
2

Enter Details

Input purchase price, quantity, date, and asset type for accurate tracking
3

Monitor Performance

The system automatically calculates current value and performance metrics
4

Analyze Returns

Review detailed analytics including ROI, gains/losses, and historical trends

Performance Analytics

The investment module provides sophisticated analytics powered by Chart.js for interactive visualizations:
// Investment performance chart from landing_page.js
const ctx = document.getElementById("mainChart");

let chart = new Chart(ctx, {
  type: 'line',
  data: {
    labels: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun'],
    datasets: [
      {
        label: 'Ingresos',
        data: [1500, 1800, 1600, 2200, 1900, 2540],
        borderColor: '#0066ff',
        backgroundColor: 'rgba(0, 102, 255, 0.1)',
        tension: 0.4,
        fill: true
      },
      {
        label: 'Gastos',
        data: [1200, 1400, 1300, 1800, 1600, 1825],
        borderColor: '#ff3366',
        backgroundColor: 'rgba(255, 51, 102, 0.1)',
        tension: 0.4,
        fill: true
      }
    ]
  },
  options: {
    responsive: true,
    maintainAspectRatio: false,
    plugins: {
      legend: {
        display: true
      },
      tooltip: {
        mode: 'index',
        intersect: false
      }
    }
  }
});
All charts are fully responsive and interactive. Hover over data points to see detailed information.

Key Metrics

Return on Investment (ROI)

Automatically calculated for each investment:
ROI = ((Current Value - Initial Investment) / Initial Investment) × 100
Example:
  • Initial Investment: €1,000
  • Current Value: €1,250
  • ROI: 25%
Green indicators show positive returns, while red indicates losses. The dashboard displays ROI percentages with color-coded icons.

Asset Types Supported

Track individual stocks and exchange-traded funds with symbol-based lookup and automatic price updates. The system supports major global markets.
Monitor fixed-income investments including government and corporate bonds. Track yield, maturity dates, and interest payments.
Manage mutual fund holdings with NAV tracking and historical performance analysis.
Record real estate investments with property valuation tracking and rental income monitoring.
Track commodities, precious metals, and other alternative asset classes.

Benchmark Comparison

Compare your portfolio performance against standard market indices:

S&P 500

US large-cap equity benchmark

IBEX 35

Spanish stock market index

Custom Index

Create your own comparison benchmark
Benchmark data helps you understand if your investment strategy is outperforming, matching, or underperforming the broader market.

Portfolio Diversification

Visualize your asset allocation with interactive pie charts:
// Portfolio allocation visualization
const allocationChart = new Chart(ctx, {
  type: 'pie',
  data: {
    labels: ['Stocks', 'Bonds', 'Crypto', 'Cash', 'Real Estate'],
    datasets: [{
      data: [45, 25, 15, 10, 5],
      backgroundColor: [
        '#0066ff',
        '#ff3366',
        '#00cc99',
        '#ffaa00',
        '#9933ff'
      ]
    }]
  }
});
Diversification principle: A well-balanced portfolio typically includes a mix of asset classes to reduce risk. Finanzapp helps you visualize and maintain optimal diversification.

Performance Reports

Export Your Data

Generate comprehensive investment reports in multiple formats:

CSV Export

Spreadsheet-compatible format for detailed analysis

PDF Report

Professional formatted reports with charts and tables

Excel

Full Excel workbook with multiple sheets and formulas
Export functionality is available from the main Investments page. All exports include transaction history, current holdings, and performance metrics.

Integration Features

Investment income (dividends, interest) automatically flows into your main financial dashboard and affects your overall income vs. expenses analysis.
// Income categories include investment returns
$income_sources = [
  'salary',
  'investment_dividends',
  'investment_interest',
  'capital_gains'
];

Mobile Access

The investment module is fully responsive and optimized for mobile devices:
/* Responsive investment cards */
.stat-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .stat-card {
    width: 100%;
    margin-bottom: 1rem;
  }
}
Access your portfolio from anywhere with Finanzapp’s mobile-optimized interface. All charts and data are touch-friendly and responsive.

Security & Privacy

Your investment data is protected with encryption and secure storage. Finanzapp never shares your financial information with third parties.
From the security feature description:
“Tus datos están protegidos con cifrado de última generación.”

Frequently Asked Questions

Portfolio values are updated in real-time when you log in. You can manually refresh at any time to see the latest performance data.
Yes! Finanzapp allows you to manually input investments from any source. There’s no limit to the number of accounts or brokers you can track.
No. Finanzapp is a tracking and analysis tool only. It does not provide investment recommendations or financial advice. Always consult with a qualified financial advisor for investment decisions.
  • Realized gains are profits from investments you’ve sold
  • Unrealized gains are current paper profits on investments you still hold
Only realized gains are typically taxable.

Cryptocurrency Tracking

Monitor your crypto investments with real-time pricing

Analytics Dashboard

View comprehensive financial analytics across all accounts

Quick Access: The chart line icon (<i class="fas fa-chart-line"></i>) in the floating elements provides quick access to your investment performance overview!

Build docs developers (and LLMs) love