Szukaj

Amibroker Plugin Github ((free)) < 2024 >

Unlocking AmiBroker’s Full Potential: A Guide to Plugins on GitHub

AmiBroker is one of the most powerful technical analysis and backtesting platforms for traders. But its true strength lies in its extensibility via plugins – DLLs written in C/C++ that can add custom data sources, execution engines, indicators, or even machine learning models.

While AmiBroker’s official plugin SDK is available on request, the GitHub community has become a goldmine of open-source, ready-to-use plugins. This post covers why GitHub matters for AmiBroker users, the best plugins available, and how to safely use them.

Future Trends: What’s Coming in Amibroker Plugin GitHub Repositories

The ecosystem is shifting toward three major trends: amibroker plugin github

  1. Rust-Written Plugins: Memory safety without garbage collection. Search for amibroker-plugin rust on GitHub to find experimental projects.
  2. gRPC Integration: Instead of custom DLLs, some plugins act as gRPC clients, connecting Amibroker to external microservices (e.g., a Python Flask app serving predictions).
  3. Cloud Symbol Mapping: Plugins that map Amibroker symbols directly to ISINs or CUSIPs, enabling portfolio-level risk analysis.

Short recommended approach

Start with well-documented, recently updated repos that include prebuilt releases and clear instructions; build from source if you need higher trust, and test thoroughly in a non-production environment.

If you want, I can:

  • Draft a short social media post (Twitter/X, LinkedIn) promoting a specific AmiBroker plugin repo.
  • Search GitHub for active AmiBroker plugin repos and list top candidates.

4. CSV-Historical-Importer (by amibroker-community)

Purpose: High-performance import of massive CSV files (1M+ rows) into Amibroker.

Amibroker’s native ASCII import wizard is slow for large tick data. This plugin memory-maps the CSV file and uses multi-threading to import data up to 50x faster. Unlocking AmiBroker’s Full Potential: A Guide to Plugins

Key Features:

  • Auto-detects date/time formats.
  • Supports custom column mapping (OHLCV + volume + open interest).
  • Progress bar and cancel option.