- Implemented unit tests for the following indicators:
- KAMA (Kaufman Adaptive Moving Average)
- SMA (Simple Moving Average)
- T3 (Tillson T3 Moving Average)
- TEMA (Triple Exponential Moving Average)
- TRIMA (Triangular Moving Average)
- WMA (Weighted Moving Average)
- Each test class includes tests for constructor defaults, history depth, short name, initialization, processing updates, and source type handling.
- Updated the Quantower.Tests.csproj to include all new test files in the lib directory.
- Introduced TBar struct for efficient OHLCV data representation.
- Implemented TBarSeries class for high-performance collection of TBar instances using Structure of Arrays (SoA) layout.
- Added TSeries class for time-series data management with zero-copy access.
- Created TValue struct for time-value pairs with implicit conversions.
- Defined IFeed interface for consistent data feed implementations.
- Developed CsvFeed class for loading historical OHLCV data from CSV files.
- Implemented GBM class for generating synthetic financial data using Geometric Brownian Motion.
- Added Quantower project files for Averages indicator with necessary dependencies and configurations.
- Included extensive usage examples and notebooks for TBar, TBarSeries, TSeries, TValue, and feed implementations.