Merge branch 'dev' into main

This commit is contained in:
Miha Kralj
2026-03-16 12:46:19 -07:00
131 changed files with 1582 additions and 1583 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ public sealed class VwadIndicator : Indicator, IWatchlistIndicator
OnBackGround = true;
SeparateWindow = true;
Name = "VWAD - Volume Weighted Accumulation/Distribution";
Description = "Volume Weighted Accumulation/Distribution enhances ADL by weighting each bar's contribution based on relative volume";
Description = "Volume Weighted Accumulation/Distribution enhances AD by weighting each bar's contribution based on relative volume";
_series = new LineSeries(name: "VWAD", color: Color.Yellow, width: 2, style: LineStyle.Solid);
AddLineSeries(_series);
+1 -1
View File
@@ -8,7 +8,7 @@ namespace QuanTAlib;
/// each bar's contribution based on its volume relative to the rolling volume sum.
/// </summary>
/// <remarks>
/// VWAD enhances ADL by weighting volume contributions:
/// VWAD enhances AD by weighting volume contributions:
/// <c>MFM = [(Close - Low) - (High - Close)] / (High - Low)</c>,
/// <c>VolWeight = Volume / Σ(Volume, period)</c>,
/// <c>VWAD = Σ(Volume × MFM × VolWeight)</c>.