void SetIndexArrow( int index, int code)
设置DRAW_ARROW 类型的自定义线为一个箭头货币对。
箭头代码范围限于33到255之间。
参数:
index - 索引线。必须在0至7之间。
code - 来自Wingdings 或 数组常数的货币对代码。
示例:
- int init()
- {
- //---- 2 个自定义缓冲
- SetIndexBuffer(0,ExtUppperBuffer);
- SetIndexBuffer(1,ExtLowerBuffer);
- //---- 绘制参量设置
- SetIndexStyle(0,DRAW_ARROW);
- SetIndexArrow(0,217);
- SetIndexStyle(1,DRAW_ARROW);
- SetIndexArrow(1,218);
- //---- 在DataWindow窗口显示
- SetIndexLabel(0,"Fractal Up");
- SetIndexLabel(1,"Fractal Down");
- //---- 初始化完成
- return(0);
- }
复制代码
|