andre_007

TrendIndicators

andre_007 已更新   
Library "TrendIndicators"
This is a library of 'Trend Indicators'.
It aims to facilitate the grouping of this category of indicators, and also offer the customized supply of
the source, not being restricted to just the closing price.

Indicators (this is a work in progress):

1. Absolute DI (Directional Moviment Index) (Difference between DI+ and DI-).
Used in 'DMI Stochastic Extreme' by Barbara Star.
2. DMI

DI_Abs(lengthDI, smoothDI, typeMA, lengthMA)
  @description Absolute DI (Directional Moviment Index).
Used in 'DMI Stochastic Extreme' by Barbara Star.
Difference between DI+ and DI-
  Parameters:
    lengthDI: (int) Length of DI+/DI-
    smoothDI: (bool) Sets whether absolute DI should be smoothed
    typeMA: (int) Type of moving average of smoothing
    lengthMA: (int) Length for moving average of smoothing
  Returns: (float) Absolute value of DI

dmi(diLength, adxSmoothing)
  @description DMI (Directional Movement Index)
Same as ta.dmi()
  Parameters:
    diLength: (int) Length of DI+/DI-
    adxSmoothing: (int) ADX Smoothing
  Returns: Tuple of three DMI series: Positive Directional
Movement (+DI), Negative Directional Movement (-DI) and Average Directional Movement Index (ADX).

dmi(source, diLength, adxSmoothing)
  @description DMI (Directional Movement Index)
Customized version of ta.dmi(), with custom source
  Parameters:
    source: (float) Source for DI+/DI-
    diLength: (int) Length of DI+/DI-
    adxSmoothing: (int) ADX Smoothing
  Returns: Tuple of three DMI series: Positive Directional
Movement (+DI), Negative Directional Movement (-DI) and Average Directional Movement Index (ADX).
版本注释:
v2
New overloaded function:
Absolute DI (Directional Moviment Index) with custom source.
版本注释:
v3
Minor fix

To contribute to my work, I accept cryptocurrency donations.
⚡Bitcoin Lightning Network: forwardocean64@walletofsatoshi.com
🟠Bitcoin: bc1qv0j28wjsg6l8fdkphkmgfz4f55xpph893q0pdh
🔵Litecoin: ltc1q4lssqlf6lnmpe4w7npdl5ws2uamm4v5zxwmf5j
Pine脚本库

本着真正的TradingView精神,作者将此Pine代码以开源脚本库发布,以便我们社区的其他Pine程序员可以重用它。向作者致敬!您可以私下或在其他开源出版物中使用此库,但在出版物中重用此代码受网站规则约束。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想使用这个脚本库吗?

复制以下行并将其粘贴到您的脚本中。