Afirma + documentation

This commit is contained in:
Miha Kralj
2024-09-24 16:28:16 -07:00
parent 990c7b4cf0
commit 4b25801d52
66 changed files with 8792 additions and 3061 deletions
-5
View File
@@ -6,11 +6,6 @@ namespace QuanTAlib;
/// previous EMA value. The weight of the new datapoint (alpha) is alpha = 2 / (period + 1)
/// </summary>
/// <remarks>
/// Smoothness: ★★★☆☆ (3/5)
/// Sensitivity: ★★★★☆ (4/5)
/// Overshooting: ★★★★★ (5/5)
/// Lag: ★★★☆☆ (3/5)
///
/// Key characteristics:
/// - Uses no buffer, relying only on the previous EMA value.
/// - The weight of new data points is calculated as alpha = 2 / (period + 1).