Averaging

均線平均選項

Description

用於構造函數和 onUpdate 設置平均移動平均線的變體

Example

this.addInput("Averaging", InputType.Averaging, Averaging.Simple); // в constructor
         let maList1 = await Indicators.MA(Current.Symbol, Current.TimeFrame, PeriodForMA1, 0, Averaging.Exponential, Line1Price, PriceType); // в onUpdate
         let list = await Indicators.MA(Current.Symbol, 0, period, 0, Averaging.Simple, AppliedPrice.Typical, PriceType); // в onUpdate

Elements

const
Exponential 指數平均 1
LinearWeighted 線性加權平均 3
Simple 簡單平均 0
Smoothed 平滑平均 2