IndicatorLine

指標線類型的枚舉

Description

在方法中使用 onUpdate 班級 Indicator

Example

export class Main extends Indicator {
     constructor() {
         super();
     }

     onInit() {
     }

     async onUpdate() {
         this.print('Starting');

         let list   = await Indicators.ADX(null, TimeFrame.Current, 6, AppliedPrice.Close, PriceType.Ask);
         let listADX      = list[IndicatorLine.Main];
         let listDIPlus   = list[IndicatorLine.PlusDI];
         let listDIMinus  = list[IndicatorLine.MinusDI];
         this.print('DIMinus='+listDIMinus[1]);
     }
}

Elements

const
ChikouSpan Chikou Span
GatorJaw 下頜線 1
GatorLips 唇線 3
GatorTeeth 牙線 2
KijunSen 紀純仙
Lower 下線
Main 基本指標線
MinusDI -DI indicator line
PlusDI +DI indicator line
SenkouSpanA Senkou Span A
SenkouSpanB Senkou Span B
Signal 信號線
TenkanSen Tenkan-sen
Upper 上線