public abstract class CandlestickMaker extends Object
| Constructor and Description |
|---|
CandlestickMaker() |
| Modifier and Type | Method and Description |
|---|---|
static void |
check(CandlestickSeries series)
Check the validity of series data comprising a
CandlestickSeries. |
static void |
check(XYSeries openVals,
XYSeries closeVals,
XYSeries highVals,
XYSeries lowVals)
Check the validity of series data comprising a candlestick chart.
|
static void |
make(XYPlot plot,
CandlestickFormatter formatter,
CandlestickSeries series)
Add a candlestick chart to the specified plot using the specified
CandlestickSeries. |
static void |
make(XYPlot plot,
CandlestickFormatter formatter,
XYSeries openVals,
XYSeries closeVals,
XYSeries highVals,
XYSeries lowVals)
Adds a candlestick chart to the specified plot using the specified
high, low, open and close values.
|
public static void make(XYPlot plot, CandlestickFormatter formatter, XYSeries openVals, XYSeries closeVals, XYSeries highVals, XYSeries lowVals)
plot - formatter - openVals - closeVals - highVals - lowVals - public static void make(XYPlot plot, CandlestickFormatter formatter, CandlestickSeries series)
CandlestickSeries.plot - formatter - series - public static void check(CandlestickSeries series)
CandlestickSeries.
This is a development aid; be sure to remove any usage of this method in production code.series - public static void check(XYSeries openVals, XYSeries closeVals, XYSeries highVals, XYSeries lowVals)
openVals - closeVals - highVals - lowVals -