Averaging

خيارات المتوسط ​​المتحرك

Description

تستخدم في الأساليب constructor و 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