1. 程式人生 > >指標程式設計全揭祕

指標程式設計全揭祕

新建一個指標檔案,新增引數
在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述
用一句程式碼設定屬性

//--- plot da
// #property indicator_label1  "da"
// #property indicator_type1   DRAW_LINE
// #property indicator_color1  clrRed
// #property indicator_style1  STYLE_SOLID
// #property indicator_width1  1
   SetIndexLabel(0, "da");
   SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 1, clrRed);

設定箭頭型別
PlotIndexSetInteger(2,PLOT_ARROW,159);
PlotIndexSetInteger(3,PLOT_ARROW,159);

在這裡插入圖片描述
在這裡插入圖片描述
填充陣列

在這裡插入程式碼片