zoukankan      html  css  js  c++  java
  • talib 中文文档(三):talib 方法大全

    Function API Examples

    Similar to TA-Lib, the function interface provides a lightweight wrapper of
    the exposed TA-Lib indicators.
    类似于TA库,对函数接口进行了一个轻量级的封装,用于公开的ta-lib的指标。

    Each function returns an output array and have default values for their
    parameters, unless specified as keyword arguments. Typically, these functions
    will have an initial "lookback" period (a required number of observations
    before an output is generated) set to NaN.
    每个函数都默认需要输入数组,并为它们提供默认值。 参数,除非指定为关键字参数。通常,这些函数 会有一个初步的“lookback”时期(观测所需数量 在生成一个输出之前),设置为“NaN”。

    All of the following examples use the function API:
    所有的API函数的使用,都需引入库文件:

    import numpy
    import talib
    
    close = numpy.random.random(100)
    

    计算收盘价的一个简单移动平均数SMA:

    output = talib.SMA(close)
    

    计算布林线,三指数移动平均:

    from talib import MA_Type
    
    upper, middle, lower = talib.BBANDS(close, matype=MA_Type.T3)
    

    计算收盘价的动量,时间为5:

    output = talib.MOM(close, timeperiod=5)
    

    方法类型分组:



    作者:HuaRongSAO
    链接:https://www.jianshu.com/p/0e1dc3fbbbe2
    來源:简书
    简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
  • 相关阅读:
    python的包和模块
    python 匿名函数
    hdu 1455 Sticks
    python 返回函数
    python 自定义排序函数
    batchsize对收敛速度的影响
    mini_batch GD
    dropout
    sift
    hog
  • 原文地址:https://www.cnblogs.com/bitquant/p/9461293.html
Copyright © 2011-2022 走看看