fill()

用從數組中獲取的值填充緩衝區
fill(array:Array)

Parameters

Name Type Действие Значение по умолчанию
array Array 數字數組

Return value

引用Buffer類型的對像以進行一系列調用

Example

export class Main extends Indicator {

     constructor() {
         super();
         this.buffers = {
             bufferMain : this.addBuffer(),
         };
     }

     onInit() {
         this.buffers.bufferMain.setColor(Color.Red);
     }

     async onUpdate() {
         const priceType = 0,
             {bufferMain} = this.buffers,
             {Close} = await Bar.load([Bar.Mode.Close], priceType);
         // 用數組值填充 bufferMain Close
         bufferMain.fill(Close);
     }
}