-
public abstract class CandlestickMaker
Helper utility to simplify the creation of of candlestick charts
-
-
Method Summary
Modifier and Type Method Description 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 specifiedhigh, low, open and close values. static void
make(XYPlot plot, CandlestickFormatter formatter, CandlestickSeries series)
Add a candlestick chart to the specified plot using the specified CandlestickSeries. static void
check(CandlestickSeries series)
Check the validity of series data comprising a CandlestickSeries.This is a development aid; be sure to remove any usage of this method in production code. static void
check(XYSeries openVals, XYSeries closeVals, XYSeries highVals, XYSeries lowVals)
Check the validity of series data comprising a candlestick chart.This is a development aid; be sure to remove any usage of this method in production code. -
-
Method Detail
-
make
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 specifiedhigh, low, open and close values.
-
make
static void make(XYPlot plot, CandlestickFormatter formatter, CandlestickSeries series)
Add a candlestick chart to the specified plot using the specified CandlestickSeries.
-
check
static void check(CandlestickSeries series)
Check the validity of series data comprising a CandlestickSeries.This is a development aid; be sure to remove any usage of this method in production code.
-
-
-
-