This repository is an article-derived reference project based on the original MQL5 article. It does not claim to reproduce the full original source code unless files are explicitly attached.
## Overview
This project documents an MQL5 implementation of fixed-width fractional differentiation (FFD) for live MetaTrader 5 data feeds. The article presents a reusable `CFFDEngine` class for weight generation and dot-product computation, a custom indicator wrapper, and a validation workflow against a Python reference pipeline.
The implementation focus is practical deployment: precomputed weights, bounded lookback, no per-tick allocation, and efficient `prev_calculated` handling for indicator execution.
## Original Article
- **Article ID:** 22015
- **Title:** Fixed-Width Fractional Differentiation in MQL5
- The repository is article-derived; full independently verified source packaging is not available unless the attached files are actually present in the processed repository input.
- Publication date and category were not available in the provided article extract.
- The README reflects the article narrative and code excerpts; it does not claim additional implementation details beyond what was explicitly shown.
- No build or installation workflow is documented here beyond the file placement conventions described in the article.
- If the actual repository does not contain the attached files, then this project should be treated as a reconstruction/reference only.
- Patrick M. Njoroge, **[MQL5 Article 22015](https://www.mql5.com/en/articles/22015)**
- Related prior article mentioned: **[Part 1](https://www.mql5.com/en/articles/22014)** on theory and Python implementation of fractional differentiation