mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-22 12:38:06 +00:00
Merge branch 'dev' into main
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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>.
|
||||
|
||||
Reference in New Issue
Block a user