PINE LIBRARY

ArrayMovingAverages

Library "ArrayMovingAverages"

This library adds several moving average methods to arrays, so you can call, eg.:



method emaArray(id, length)
  Calculate Exponential Moving Average (EMA) for Arrays
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    length (int): (int) Length of the EMA
  Returns: (array<float>) Array of EMA values

method ema(id, length)
  Get the last value of the EMA array
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    length (int): (int) Length of the EMA
  Returns: (float) Last EMA value or na if empty

method rmaArray(id, length)
  Calculate Rolling Moving Average (RMA) for Arrays
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    length (int): (int) Length of the RMA
  Returns: (array<float>) Array of RMA values

method rma(id, length)
  Get the last value of the RMA array
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    length (int): (int) Length of the RMA
  Returns: (float) Last RMA value or na if empty

method smaArray(id, windowSize)
  Calculate Simple Moving Average (SMA) for Arrays
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    windowSize (int): (int) Window size for calculation, defaults to array size
  Returns: (array<float>) Array of SMA values

method sma(id, windowSize)
  Get the last value of the SMA array
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    windowSize (int): (int) Window size for calculation, defaults to array size
  Returns: (float) Last SMA value or na if empty

method wmaArray(id, windowSize)
  Calculate Weighted Moving Average (WMA) for Arrays
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    windowSize (int): (int) Window size for calculation, defaults to array size
  Returns: (array<float>) Array of WMA values

method wma(id, windowSize)
  Get the last value of the WMA array
  Namespace types: array<float>
  Parameters:
    id (array<float>): (array<float>) Input array
    windowSize (int): (int) Window size for calculation, defaults to array size
  Returns: (float) Last WMA value or na if empty
moving_averageMoving AveragesPine utilitiesstatistics

Pineライブラリ

TradingViewの精神に則り、作者はPineコードをオープンソースライブラリとして公開し、コミュニティの他のPineプログラマーが再利用できるようにしました。作者に敬意を表します!このライブラリを個人的に、または他のオープンソースの投稿で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。

免責事項