🚀
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

Was this helpful?

Edit on GitHub
  1. Supporting Tools

Evaluator

Advanced analysis for your investment portfolio.

The Evaluator class provides static methods to analyze and extract insights from your investment portfolio. It includes methods for identifying the top and bottom performing assets over a specified period, which can be crucial for post-analysis and decision-making processes.

Usage

from finter.performance import Evaluator

Note

  • The position should be either a name of a specific model submitted.

  • The start and end parameters are optional. If not specified, the analysis will cover the entire available period.

  • These methods are designed for post-analysis and data visualization purposes and should not be used directly for modeling on the Finter platform.

Last updated 9 months ago

Was this helpful?