美文网首页
TA-Lib指标(4/10)Volatility Indicat

TA-Lib指标(4/10)Volatility Indicat

作者: tolushe | 来源:发表于2018-09-26 10:41 被阅读0次

    Volatility Indicator Functions

    ATR - Average True Range

    NOTE: The ATR function has an unstable period.

    real = ATR(high, low, close, timeperiod=14)
    
    

    Learn more about the Average True Range at tadoc.org.

    NATR - Normalized Average True Range

    NOTE: The NATR function has an unstable period.

    real = NATR(high, low, close, timeperiod=14)
    
    

    Learn more about the Normalized Average True Range at tadoc.org.

    TRANGE - True Range

    real = TRANGE(high, low, close)
    
    

    Learn more about the True Range at tadoc.org.

    相关文章

      网友评论

          本文标题:TA-Lib指标(4/10)Volatility Indicat

          本文链接:https://www.haomeiwen.com/subject/bqrdoftx.html