顺水外汇EA交易网MT4

标题: 求个反k线MT4指标,如图这样的 [打印本页]

作者: yklt168    时间: 2018-1-11 16:49
标题: 求个反k线MT4指标,如图这样的
[attach]23336[/attach]

作者: xiao1a    时间: 2018-1-11 18:21
这个用什么用?
作者: metatrade    时间: 2018-1-11 19:07
here
作者: yklt168    时间: 2018-1-11 20:32

谢谢哥们,能给下源代码吗?
[attach]23337[/attach]

作者: jiuhongzhi    时间: 2018-1-11 21:38
指标 能反吗????????
作者: jiuhongzhi    时间: 2018-1-11 22:06
上张图:
[attach]23338[/attach]

作者: 天利豹    时间: 2018-1-11 23:30
这个不错,继续
作者: Mito    时间: 2018-1-11 23:50
没见过这个指标呢~

作者: yuanmingyuan    时间: 2018-1-12 00:20
意义不大呀
作者: yklt168    时间: 2018-1-12 01:07

能共享mq4文件吗?非常谢谢~~

作者: wangyitang    时间: 2018-1-12 01:58
兄弟,在主图的源码我有,没用。需要把他变成幅图。
还差一步:
”需要把0轴到min(Open,Close)的柱状线画成黑色, 从而去掉K线实体之外的颜色.“
你看下这个能不能解决

作者: jiuhongzhi    时间: 2018-1-12 03:31

就是 metatrade ex4文件。

作者: jiuhongzhi    时间: 2018-1-12 03:46
上张 反K线 图:
[attach]23339[/attach]

作者: 潇洒的微笑    时间: 2018-1-12 03:54
谢谢哥们,谢谢哥们
作者: yklt168    时间: 2018-1-12 04:24

非常谢谢,能帮忙改下这个代码吗?
主要是0轴那段要抹去~
#property indicator_separate_window
#property indicator_buffers 4
#property indicator_color1 Turquoise
#property indicator_color2 Orange
#property indicator_color3 Turquoise
#property indicator_color4 Orange
//#property indicator_color3 Yellow
//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
int n;
//double ExtMapBuffer3[];
//----
int ExtCountedBars=0;
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3);
SetIndexBuffer(0, ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,3);
SetIndexBuffer(1, ExtMapBuffer2);
SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_SOLID,1);
SetIndexBuffer(2, ExtMapBuffer3);
SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_SOLID,1);
SetIndexBuffer(3, ExtMapBuffer4);
return(0);
}
int deinit()
{
//----
return(0);
}
int start()
{
if(Bars<=10) return(0);
int pos=0;
n=WindowBarsPerChart();
while(pos<n)
{
   ExtMapBuffer1[pos]=-1*Open[pos];
   ExtMapBuffer2[pos]=-1*Close[pos];
   if (Open[pos]<=Close[pos])
   {
      ExtMapBuffer3[pos]=-1*Low[pos];
      ExtMapBuffer4[pos]=-1*High[pos];
   }
   else
   {
      ExtMapBuffer4[pos]=-1*Low[pos];
      ExtMapBuffer3[pos]=-1*High[pos];
   }
pos++;
}
//----
return(0);
}
//+------------------------------------------------------------------+




欢迎光临 顺水外汇EA交易网MT4 (http://waterforex.com/) Powered by Discuz! X3.2