🚀
Finter
PlaygroundData Catalogue
Quick Start
Quick Start
  • Getting Started with Finter: A Quick Guide
  • Explore Finter
    • Finter Labs (Recommended)
    • Other Ways
      • Google Colab
      • Conda, venv, or Docker
      • Setting Up a .env File (Optional)
  • Framework
    • CM (Content Model)
    • AM (Alpha Model)
    • PM (Portfolio Model)
    • Simulatior
      • Target Volume Limit
    • Finter Cli Submission
      • Validation
      • GitHub Sync
      • [Legacy] JupyterLab Submission
      • [Legacy] Submission
  • MODELING
    • MetaPortfolio
      • Equal weight meta portfolio
      • Fixed weight meta portfolio
      • Risk parity meta portfolio
    • StrategicAssetAllocation
    • DateConverter
    • BuyHoldConverter
  • Supporting Tools
    • FileManager
    • Finter AI (alpha ver.)
    • Data
      • FinHelper
        • filter_unchanged
        • unify_idx
        • shift_fundamental
        • rolling
        • expand_to_gvkeyiid
      • ModelData
      • ID Table
      • ID Converter
      • Quanda Data
    • Evaluator
      • top_n_assets
      • bottom_n_assets
      • compare_with_bm
    • PortfolioAnalyzer
    • Email
Powered by GitBook
On this page
  • Methods
  • nav2stats

Was this helpful?

Edit on GitHub
  1. Supporting Tools

PortfolioAnalyzer

This class offers a range of tools to analyze simulation results from various perspectives.

Methods

nav2stats

Method Overview

The method calculates essential statistics for each period based on the provided Net Asset Value (NAV). Key metrics include:

  • Total Return

  • Compound Annual Growth Rate (CAGR)

  • Volatility

  • Sharpe Ratio

  • Sortino Ratio

  • Maximum Drawdown (MDD)

  • Skewness

  • Kurtosis

  • Value at Risk (VaR) 95%

  • Value at Risk (VaR) 99%

Parameters

  • nav (pandas.Series): A Pandas Series containing daily Net Asset Value (NAV) data.

  • period (Literal ['M', 'Q', 'Y', None]): The period for splitting the data. Options are:

    • 'M': Monthly

    • 'Q': Quarterly

    • 'Y': Yearly

    • None: No period splitting

Last updated 6 months ago

Was this helpful?