美文网首页
TA-Lib指标(9/10) Math Transform Fu

TA-Lib指标(9/10) Math Transform Fu

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

    Math Transform Functions

    ACOS - Vector Trigonometric ACos

    real = ACOS(close)
    

    ASIN - Vector Trigonometric ASin

    real = ASIN(close)
    

    ATAN - Vector Trigonometric ATan

    real = ATAN(close)
    

    CEIL - Vector Ceil

    real = CEIL(close)
    

    COS - Vector Trigonometric Cos

    real = COS(close)
    

    COSH - Vector Trigonometric Cosh

    real = COSH(close)
    

    EXP - Vector Arithmetic Exp

    real = EXP(close)
    

    FLOOR - Vector Floor

    real = FLOOR(close)
    

    LN - Vector Log Natural

    real = LN(close)
    

    LOG10 - Vector Log10

    real = LOG10(close)
    

    SIN - Vector Trigonometric Sin

    real = SIN(close)
    

    SINH - Vector Trigonometric Sinh

    real = SINH(close)
    

    SQRT - Vector Square Root

    real = SQRT(close)
    

    TAN - Vector Trigonometric Tan

    real = TAN(close)
    

    TANH - Vector Trigonometric Tanh

    real = TANH(close)
    

    相关文章

      网友评论

          本文标题:TA-Lib指标(9/10) Math Transform Fu

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