void SetIndexEmptyValue(int index, double value)
Sets drawing line empty value. Empty values are not drawn or shown in the DataWindow. By default, empty value is EMPTY_VALUE.
描画線の空値を設定します。空値は描画されず、データ ウィンドウにも表示されません。デフォルトでは、空値は EMPTY_VALUE です。
Parameters:
パラメータ:
1 2 3 4 5 | <b>index</b> - Line index. Must lie between 0 and 7. ライン インデックス。0~7の間ある必要があります。 <b>value</b> - New "empty" value. 新しい「カラ」の値。 |
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | int init() { //---- 2 allocated indicator buffers SetIndexBuffer(0,ExtUppperBuffer); SetIndexBuffer(1,ExtLowerBuffer); //---- drawing parameters setting SetIndexStyle(0,DRAW_ARROW); SetIndexArrow(0,217); SetIndexStyle(1,DRAW_ARROW); SetIndexArrow(1,218); //---- 0 value will not be displayed SetIndexEmptyValue(0,0.0); SetIndexEmptyValue(1,0.0); //---- displaying in DataWindow SetIndexLabel(0,"Fractal Up"); SetIndexLabel(1,"Fractal Down"); //---- initialization done return(0); } |