All Downloads are FREE. Search and download functionalities are using the official Maven repository.

quant.fans.Quants Maven / Gradle / Ivy

The newest version!
package quant.fans;

import quant.fans.model.StockData;
import quant.fans.provider.Provider;
import quant.fans.strategy.StrategyUtils;
import quant.fans.tools.StockList;

import java.util.List;
import java.util.Map;

public class Quants {

    /**
     * 获取股票数据接口
     */
    public final Provider data = new Provider();

    /**
     * 指标计算接口
     */
    public final Indicators indicator = new Indicators();

    /**
     * 策略计算接口
     */
    public final StrategyUtils strategy = new StrategyUtils();

    public final StockList stocks = new StockList();
    /**
     * 使用外部存储,支持:
     * 文件系统(csv)
     * redis
     * hbase
     *
     * @param config config
     * @return quants instance
     */
    public Quants db(Map config) {
        //TODO
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy