MQL5变色线的画法(比MQL4更加简单)

2019-07-11 00:29:05 阅读 :
MQL5里有一种特殊指标数组“颜色数组”,他是和画线的指标数组配合使用的。通过对他的简单赋值可以使画出的线变色。
首先要在指标头部定义里指定一条线对应的数组是要使用变色画线方式,指定方法是:
#property indicator_typeX DRAW_COLOR_LINE
这里X代表画线的数组序号
DRAW_COLOR_LINE代表画线,此外还可以有如下画线方式: 
复制代码
  1.  
  2. DRAW_COLOR_LINE
  3. Colorful Line彩色线
  4. DRAW_COLOR_SECTION
  5. Multicolored section彩色块
  6. DRAW_COLOR_HISTOGRAM
  7. Multicolored histogram from the zero line彩色柱状图
  8. DRAW_COLOR_HISTOGRAM2
  9. Multicolored histogram of the two indicator buffers彩色柱状图2
  10. DRAW_COLOR_ARROW
  11. Drawing colored arrows彩色箭头
  12. DRAW_COLOR_ZIGZAG
  13. Colorful ZigZag彩色ZigZag
  14. DRAW_COLOR_BARS
  15. Multi-colored bars彩色竹线图
  16. DRAW_COLOR_CANDLES
  17. Multi-colored candles彩色蜡烛图

然后紧跟一个颜色的定义语句:
#property indicator_colorX Red,Green
两个颜色之间用逗号分隔
============================================
针对上面程序头部的定义,之后要开始全局数组的定义。
这里要注意实现变色需要针对一条线使用两个数组,
例如:
double bMaBuffer[],bColorBuffer[];
然后进入OnInit事件进行两个数组的分别设定:
SetIndexBuffer(0,bMaBuffer,INDICATOR_DATA);//INDICATOR_DATA表示是用于画线的数组
SetIndexBuffer(1,bColorBuffer,INDICATOR_COLOR_INDEX);//INDICATOR_COLOR_INDEX表示是用于变色的颜色数组
注意:
如果这里要画多条彩色线,则画线数组和颜色数组的序号要紧邻。
============================================
下一步就是在OnCaculate事件里进行画线数组的计算,同时根据自定义的条件对颜色数组进行赋值。
赋值规则是:
当对应K线序号的颜色数组被赋值1.0时,对应画线数组的颜色为 第一个颜色
当对应K线序号的颜色数组被赋值0.0时,对应画线数组的颜色为 第二个颜色
完。
程序举例源码如下:【画出两个变色线】
复制代码
  1.  
  2. //+------------------------------------------------------------------+
  3. //| Test.mq5 |
  4. //| Copyright 2009, MetaQuotes Software Corp. |
  5. //| http://bbs.520fx.com |
  6. //+------------------------------------------------------------------+
  7. #property copyright "2009, 520FX"
  8. #property link "http://www.mql5.com"
  9. #property version "1.00"
  10. #property indicator_chart_window
  11. #property indicator_buffers 4
  12. #property indicator_plots 2
  13. #property indicator_color1 Red,Green
  14. #property indicator_type1 DRAW_COLOR_LINE
  15. #property indicator_style1 STYLE_SOLID
  16. #property indicator_width1 2
  17. #property indicator_color2 Yellow,Blue
  18. #property indicator_type2 DRAW_COLOR_LINE
  19. #property indicator_style2 STYLE_SOLID
  20. #property indicator_width2 2
  21. input int MaPeriod=13;
  22. double bMaBuffer[],bMaBuffer1[],bColorBuffer[],bColorBuffer1[];
  23. int iMaHandle,iMaHandle1;
  24. //+------------------------------------------------------------------+
  25. //| Custom indicator initialization function |
  26. //+------------------------------------------------------------------+
  27. int OnInit()
  28. {
  29. //--- indicator buffers mapping
  30. SetIndexBuffer(0,bMaBuffer,INDICATOR_DATA);
  31. SetIndexBuffer(1,bColorBuffer,INDICATOR_COLOR_INDEX);
  32. SetIndexBuffer(2,bMaBuffer1,INDICATOR_DATA);
  33. SetIndexBuffer(3,bColorBuffer1,INDICATOR_COLOR_INDEX);
  34. IndicatorSetInteger(INDICATOR_DIGITS,_Digits);
  35. iMaHandle=iMA(NULL,0,MaPeriod,0,MODE_SMA,PRICE_CLOSE);
  36. iMaHandle1=iMA(NULL,0,MaPeriod+50,0,MODE_SMA,PRICE_CLOSE);
  37. //---
  38. return(0);
  39. }
  40. //+------------------------------------------------------------------+
  41. //| Custom indicator iteration function |
  42. //+------------------------------------------------------------------+
  43. int OnCalculate(const int rates_total,
  44. const int prev_calculated,
  45. const datetime& time[],
  46. const double& open[],
  47. const double& high[],
  48. const double& low[],
  49. const double& close[],
  50. const long& tick_volume[],
  51. const long& volume[],
  52. const int& spread[])
  53. {
  54. //--- return value of prev_calculated for next call
  55. //--- checking for bars count
  56. if(rates_total<MaPeriod)
  57. return(0);
  58. //--- detect start position
  59. int start;
  60. //if(prev_calculated>1) start=prev_calculated-1;
  61. //else start=1;
  62. if(prev_calculated<0)return(-1);else start=rates_total-prev_calculated+1;
  63. int to_copy;
  64. if(prev_calculated>rates_total || prev_calculated<0) to_copy=rates_total;
  65. else
  66. {
  67. to_copy=rates_total-prev_calculated;
  68. if(prev_calculated>0) to_copy++;
  69. }
  70. if(CopyBuffer(iMaHandle,0,0,to_copy,bMaBuffer)<=0)
  71. {
  72. Print("Getting fast SMA is failed! Error",GetLastError());
  73. return(0);
  74. }
  75. if(CopyBuffer(iMaHandle1,0,0,to_copy,bMaBuffer1)<=0)
  76. {
  77. Print("Getting fast SMA1 is failed! Error",GetLastError());
  78. return(0);
  79. }
  80. //--- main cycle
  81. for(int i=start;i<rates_total;i++)
  82. {
  83. if(bMaBuffer[i]>close[i-1])
  84. bColorBuffer[i]=1.0;
  85. else bColorBuffer[i]=0.0;
  86. if(bMaBuffer1[i]>close[i-1])
  87. bColorBuffer1[i]=1.0;
  88. else bColorBuffer1[i]=0.0;
  89. }
  90. return(rates_total);
  91. }
  92. //+------------------------------------------------------------------+
本文标题:MQL5变色线的画法(比MQL4更加简单) - 外汇智能交易编程
本文地址:http://www.0594trade.com/fxschool/autotrading/1068.html

相关文章

你可能感兴趣