自学内容网 自学内容网

MQL4中关于箭头的使用

MQL4中关于箭头的使用

前言

  MQL4中会遇到一些箭头标记的需求,刚开始使用的是ObjectCreate函数来创建一个箭头对象,但是使用过程中遇到好多问题,比如导致图标中对象太多,容易被用户误操作,很多需要绘制箭头的地方无法绘制等问题。后来发现图形元素就可以直接做成箭头形式,直接解决了使用箭头对象时所遇到的所有问题,代码也更简洁,特书写此文用以记录使用方法。

正文

  首先,在创建指标选择绘制属性时,类型选择Arrow,如下图所示
在这里插入图片描述
  创建完成后会自动生成一些代码,下面代码在自动生成的基础上只多了一个段在OnCalculate函数中循环赋值的操作,只要给相应的数组赋值,就能画出箭头,代码如下所示

//+------------------------------------------------------------------+
//|                                                          aaa.mq4 |
//|                                  Copyright 2024, MetaQuotes Ltd. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2024, MetaQuotes Ltd."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict// 标记显示新版语法严谨的版本,加上以后会检查数组越界
#property indicator_chart_window// 指标显示在主窗口上
#property indicator_buffers 7// 指标数组的个数
#property indicator_plots   7// 图形元素的个数
//--- plot Label1
#property indicator_label1  "Label1"// 图形元素的名字
#property indicator_type1   DRAW_LINE// 指标绘制的是线
#property indicator_color1  clrRed// 图形元素的颜色
#property indicator_style1  STYLE_SOLID// 线的类型,直线虚线之类的
#property indicator_width1  1// 线宽
//--- plot Label2
#property indicator_label2  "Label2"
#property indicator_type2   DRAW_LINE
#property indicator_color2  clrRed
#property indicator_style2  STYLE_SOLID
#property indicator_width2  1
//--- plot Label3
#property indicator_label3  "Label3"
#property indicator_type3   DRAW_LINE
#property indicator_color3  clrRed
#property indicator_style3  STYLE_SOLID
#property indicator_width3  1
//--- plot Label4
#property indicator_label4  "Label4"
#property indicator_type4   DRAW_ARROW// 指标绘制的是箭头
#property indicator_color4  clrRed
#property indicator_style4  STYLE_SOLID
#property indicator_width4  1
//--- plot Label5
#property indicator_label5  "Label5"
#property indicator_type5   DRAW_ARROW
#property indicator_color5  clrRed
#property indicator_style5  STYLE_SOLID
#property indicator_width5  1
//--- plot Label6
#property indicator_label6  "Label6"
#property indicator_type6   DRAW_ARROW
#property indicator_color6  clrRed
#property indicator_style6  STYLE_SOLID
#property indicator_width6  1
//--- plot Label7
#property indicator_label7  "Label7"
#property indicator_type7   DRAW_ARROW
#property indicator_color7  clrRed
#property indicator_style7  STYLE_SOLID
#property indicator_width7  1

//--- input parameters
input int maCount = 18;     // 输入参数,用户可以在调用指标的时候指定

//--- indicator buffers
double         Label1Buffer[];// 存放指标数据的数组
double         Label2Buffer[];
double         Label3Buffer[];
double         Label4Buffer[];
double         Label5Buffer[];
double         Label6Buffer[];
double         Label7Buffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
   SetIndexBuffer(0,Label1Buffer);// 图形元素的图形与数值进行绑定
   SetIndexBuffer(1,Label2Buffer);
   SetIndexBuffer(2,Label3Buffer);
   SetIndexBuffer(3,Label4Buffer);
   SetIndexBuffer(4,Label5Buffer);
   SetIndexBuffer(5,Label6Buffer);
   SetIndexBuffer(6,Label7Buffer);
//--- setting a code from the Wingdings charset as the property of PLOT_ARROW
   PlotIndexSetInteger(3,PLOT_ARROW,159);// 设置箭头样式
   PlotIndexSetInteger(4,PLOT_ARROW,159);
   PlotIndexSetInteger(5,PLOT_ARROW,159);
   PlotIndexSetInteger(6,PLOT_ARROW,159);
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//---
   
//--- return value of prev_calculated for next call
for(int i = 0; i < rates_total; ++i)
Label7Buffer[i] = high[i];
   return(rates_total);
  }
//+------------------------------------------------------------------+

  运行结果如下图所示
在这里插入图片描述

自定义箭头样式

  自动生成的代码中,在OnInit函数中,有一句PlotIndexSetInteger(3,PLOT_ARROW,159);可以用来设置箭头样式。但在实际使用过程中发现,这句代码并不能成功设置箭头样式,需要将此句修改为SetIndexArrow(3, 159);,第一个参数为图形元素的索引,从0开始,第二个参数为箭头样式的序号,具体样式与序号的对应关系如下图所示
在这里插入图片描述


原文地址:https://blog.csdn.net/mumufan05/article/details/140674374

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!