void SetIndexArrow(int index, int code)
Sets an arrow symbol for indicators line of the DRAW_ARROW type.
DRAW_ARROW 型のインディケータの線を矢印シンボルに設定します。
Arrow codes out of range 33 to 255 cannot be used.
33~255の範囲外の矢印コードは使用するこはできません。
Parameters:
パラメータ:
1 2 3 4 5 | <b>index</b> - Line index. Must lie between 0 and 7. ライン インデックス。0~7の間である必要があります。 <b>code</b> - Symbol code from <a href="20170707141839/http://www.metasys-seeker.net/MQL4_Reference_ver1/02-08_Wingdings.html">Wingdings</a> font or <a href="20170707141839/http://www.metasys-seeker.net/MQL4_Reference_ver1/02-07_ArrowCodes.html">Arrow constants</a>. <a href="20170707141839/http://www.metasys-seeker.net/MQL4_Reference_ver1/02-08_Wingdings.html">Wingdings</a> フォントあるいは<a href="20170707141839/http://www.metasys-seeker.net/MQL4_Reference_ver1/02-07_ArrowCodes.html">矢印定数</a>のシンボル コード。 |
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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); //---- displaying in the DataWindow SetIndexLabel(0,"Fractal Up"); SetIndexLabel(1,"Fractal Down"); //---- initialization done return(0); } |