【MA10,MA20金叉银叉形态指标】交接点均线MA指标指示分析(EA指标编写)
© 本贴为 万元 首发,严禁抄袭!
#property copyright "wang"
#property link "https://www.mql5.com"
#property version "1.00"
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_plots 4
//--- plot 十日均线
#property indicator_label1 "十日均线"
#property indicator_type1 DRAW_LINE
#property indicator_color1 clrRed
#property indicator_style1 STYLE_SOLID
#property indicator_width1 1
//--- plot 二十日均线
#property indicator_label2 "二十日均线"
#property indicator_type2 DRAW_LINE
#property indicator_color2 clrYellow
#property indicator_style2 STYLE_SOLID
#property indicator_width2 1
#property indicator_label3 "金叉"
#property indicator_type3 DRAW_ARROW
#property indicator_color3 clrWhite
#property indicator_style3 STYLE_SOLID
#property indicator_width3 2
#property indicator_label3 "死叉"
#property indicator_type3 DRAW_ARROW
#property indicator_color3 clrYellow
#property indicator_style3 STYLE_SOLID
#property indicator_width3 2
|
-
-
代码
|
|
|
|
DDD
DDD
D
DDD
DD
DDD