量化交易系统

【三连阴阳指标(简单的三阴阳形态】三连阴阳指标 引用三连阴阳指标写EA

  • 型号:
Main Image 0号 (三连阴 前面是阳 三连阳反之 )      按0号K线起始     
1号 (三连阴 前面是阳 三连阳反之 )      按1号K线起始
2号 (三连阴 三连阳 )      按0号K线起始     
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_plots   2
//--- plot Label1
#property indicator_label1  下
#property indicator_type1   DRAW_ARROW
#property indicator_color1 clrAliceBlue
#property indicator_style1 STYLE_SOLID
#property indicator_width1 2
#property indicator_label2  上
#property indicator_type2   DRAW_ARROW
#property indicator_color2 clrLimeGreen
#property indicator_style2 STYLE_SOLID
#property indicator_width2 2
input double 箭头间距=50;
kindy610 发表于 2022-3-24 15:09
0号,1号,2号是什么区别啊?
0号 (三连阴 前面是阳 三连阳反之 )      按0号K线起始     
1号 (三连阴 前面是阳 三连阳反之 )      按1号K线起始
2号 (三连阴 三连阳 )      按0号K线起始