8e5893b708
API Tests / build (push) Has been cancelled
Benchmarks / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled
Regression Tests / build (push) Has been cancelled
Report Generator Tests / build (push) Has been cancelled
Research Regression Tests / build (push) Has been cancelled
Python Virtual Environments / build (push) Has been cancelled
* Implement Hurst Exponent indicator and unit test - Implemented Hurst Exponent indicator class - Created unit tests to validate indicator functionality - Added helper methods for standard deviation and regression line slope * Optimize Hurst Exponent calculation - Removed redundat loops and unnecessary operations. - Precomputed values fro time lag logarithms to avoid recalculation. - Simplified logic in ComputeNextValue for better performance. - Updated and clarified comments for improved readability. * Refactor HurstExponent indicator - Made _sumX and _sumX2 fields readonly. - Updated loop for calculating time lag differences to avoid out of bound. - Renamed lookbackPeriod with period. - Replaced DateTime.Now with a fixed date.