mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 13:58:04 +00:00
fix: resolve build and test errors
- Sar.Quantower.Tests.cs: add missing opening quote on string literal (line 48) - Exports.cs: rename Correlation.Batch → Correl.Batch (CS0103) - Ad.Validation.Tests.cs: fix Ooples OutputValues key "Ad" → "Adl"
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