Current

常量和變量的當前值

Description

在方法中使用 onUpdate 或者 Indicator
或者 onTick 班級 TradingBot 獲取常量和變量的當前值

Example

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

     onInit() {
     }

     async onUpdate() {
         this.print('Current.Ask=' + Current.Ask);
         this.print('Current.Bid=' + Current.Bid);
         this.print('Current.Digits=' + Current.Digits);
         this.print('Current.Point=' + Current.Point);
         this.print('Current.Symbol=' + Current.Symbol);
         this.print('Current.Time=' + Current.Time);
         this.print('Current.TimeFrame=' + Current.TimeFrame);
     }
}

Elements

const
Ask 當前交易品種的最新已知賣家價格(要價)。
Bid 當前交易品種的最新已知買方價格(賣價、買價)
Digits 當前交易品種價格的小數點後位數。
Point 以報價貨幣表示的當前交易品種點值。
ScriptId 當前腳本 ID
Symbol 象徵
Time 最近的已知時間
TimeFrame 當前時間範圍