#include <ChartCandlestickSerie.h>
Public Member Functions | |
SChartCandlestickPoint (double XValue, double LowVal, double HighVal, double OpenVal, double CloseVal) | |
double | GetX () const |
Returns the X value of the point. | |
double | GetY () const |
Returns the Y value of the point, which is the average between low and high. | |
double | GetXMin () const |
Returns the minimum X value of the point. | |
double | GetXMax () const |
Returns the maximum X value of the point. | |
double | GetYMin () const |
Returns the minimum Y value of the point (the low value). | |
double | GetYMax () const |
Returns the maximum Y value of the point (the high value). | |
Public Attributes | |
double | XVal |
The X value of the point (usually, a time). | |
double | Low |
The low market price. | |
double | High |
The high market price. | |
double | Open |
The open market price. | |
double | Close |
The close market price. |