Search found 1 match

by uzzi
Thu Nov 27, 2008 9:18 pm
Forum: JFreeChart - Stockmarket
Topic: Moving Average - whats the actual algorithm
Replies: 1
Views: 7213

Moving Average - whats the actual algorithm

Hi guys, I'm creating some moving average graphs to go with my candlestick graphs by using the following code: XYDataset dataset2 = MovingAverage.createMovingAverage(dataset, "Moving Average", 30 * 24 * 60 * 60 * 1000L, 0L); mainPlot.setDataset(1, dataset2); mainPlot.setRenderer(1, new StandardXYIte...