Struct CandleExtremums
Represents the extreme values of Price and Volume for a set of candlesticks.
Namespace: FancyCandles
Assembly: FancyCandles.dll
Syntax
public struct CandleExtremums
Constructors
| Improve this Doc View SourceCandleExtremums(Double, Double, Double, Double)
Initializes a new instance of the CandleExtremums structure that has the specified PriceLow, PriceHigh, VolumeLow, and VolumeHigh.
Declaration
public CandleExtremums(double priceLow, double priceHigh, double volumeLow, double volumeHigh)
Parameters
Type | Name | Description |
---|---|---|
System.Double | priceLow | The PriceLow of the CandleExtremums. |
System.Double | priceHigh | The PriceHigh of the CandleExtremums. |
System.Double | volumeLow | The VolumeLow of the CandleExtremums. |
System.Double | volumeHigh | The VolumeHigh of the CandleExtremums. |
Fields
| Improve this Doc View SourcePriceHigh
The Price maximum.
Declaration
public double PriceHigh
Field Value
Type | Description |
---|---|
System.Double | The Price maximum. |
PriceLow
The Price minimum.
Declaration
public double PriceLow
Field Value
Type | Description |
---|---|
System.Double | The Price minimum. |
VolumeHigh
The Volume maximum.
Declaration
public double VolumeHigh
Field Value
Type | Description |
---|---|
System.Double | The Volume maximum. |
VolumeLow
The Volume minimum.
Declaration
public double VolumeLow
Field Value
Type | Description |
---|---|
System.Double | The Volume minimum. |
Methods
| Improve this Doc View SourceEquals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
System.ValueType.Equals(System.Object)