Search Framework:
VolumeProfileItem
Namespace: WealthLab.Core
Parent: Object

Represents a single horizontal line in a Volume Pofile. The VolumeProfile class maintains a list of VolumeProfileInstances in its Items property.

Members
DownVolume
public double DownVolume

Contains the "down volume" of this Volume Profile bar. Volume is counted as "down" when closing price is less than closing price of the previous bar.


InValueArea
public bool InValueArea

Will contain true if this Volume Profile bar is within the "Value Area" of the Volume Profile. That is, is amongst the Volume Profile bars that make up a percentage of the total value determined by the Volume Profile's ValueRangePct (default 70%.)


IsPOC
public bool IsPOC

Will contain true if this Volume Profile bar is the "Point of Control" for the Volume Profile. That is, it is the Volume Profile bar with the largest TotalVolume.


IsValueInRange
public bool IsValueInRange(double value)
public bool IsValueInRange(double high, double low)

Determines whether the single value, or the high low value range, is within the RangeMin/RangeMax of this Volume Profile bar.


RangeMax
public double RangeMax

Contains the inclusive upper range of values that this Volume Profile bar represents.


RangeMin
public double RangeMin

Contains the exclusive lower range of values that this Volume Profile bar represents.


TotalVolume
public double TotalVolume

Contains the total volume of this Volume Profile bar (UpVolume + DownVolume.)


UpVolume
public double UpVolume

Contains the "up volume" of this Volume Profile bar. Volume is counted as "up" when closing price is greater than or equal to closing price of the previous bar.


WidthPct
public double WidthPct

Returns the percentage (0.0 to 1.0) width of this Volume Profile bar compared to the width of the Volume Profile bar that is the "Point of Control" (has the largest TotalVolume.)


WidthPctDown
public double WidthPctDown

Returns the percentage (0.0 to 1.0) width of this Volume Profile bar's DownVolume compared to the TotalVolume width of the Volume Profile bar that is the "Point of Control" (has the largest TotalVolume.)


WidthPctUp
public double WidthPctUp

Returns the percentage (0.0 to 1.0) width of this Volume Profile bar's UpVolume compared to the TotalVolume width of the Volume Profile bar that is the "Point of Control" (has the largest TotalVolume.)