java如何用talib计算移动平均线,ta-lib的使用
1.网上大部分教程基本都是基于python对talib函数的使用 , 因为pandas在python编程是比java更直观,但是也免不了有人用Java实现.
SMA 是 Single Moving Average缩写, 也就是移动平均线 , 当然 , ta-lib也有几百个其它函数, 诸如macd , 基本上都是传入 数组 .很相似 .
import com.tictactec.ta.lib.Core; import com.tictactec.ta.lib.MInteger; import com.tictactec.ta.lib.RetCode; public class SimpleMovingAverageExample { /** * The total number of periods to generate data for. */ public static final int TOTAL_PERIODS = 100; //1 .数组长度100 /** * The number of periods to average together. */ public static final int PERIODS_AVERAGE = 30; //2. MA移动周期窗口,这里30代表30日均线 public static void main(String[] args) { double[] closePrice = new double[TOTAL_PERIODS]; double[] out = new double[TOTAL_PERIODS]; MInteger begin = new MInteger(); MInteger length = new MInteger(); for (int i = 0; i < closePrice.length; i++) { //3. 这里纯粹是造数据, 你也可以把自己的原始数据赋值给 closePrice[],最后计算要用此数组! closePrice[i] = (double) i; } Core c = new Core(); //下面这个是获取Core实例执行sma(移动平均线)函数 , 一共7个参数 , 这里可以不用管, 因为前面已经定义了 RetCode retCode = c.sma(0, closePrice.length - 1, closePrice, PERIODS_AVERAGE, begin, length, out); //说明,begin是治标最开始出现的下标(前几个是无法得出指标的),length是有效指标个数, out是输出结果数组 . 其实就是把out前面不符合的裁掉,再输出结果
if (retCode == RetCode.Success) { System.out.println(Output Start Period: + begin.value); System.out.println(Output End Period: + (begin.value + length.value - 1)); for (int i = begin.value; i < begin.value + length.value; i++) { StringBuilder line = new StringBuilder(); line.append(Period #); line.append(i); line.append( close=); line.append(closePrice[i]); line.append( mov_avg=); line.append(out[i - begin.value]); System.out.println(line.toString()); } } else { System.out.println(Error); } } }
参考 https://github.com/ishanthilina/TA-Lib-Java-Examples
ta-lib的jar包下载地址: https://alpha7.lanzouu.com/iPuxH04etg8h