顺水外汇EA交易网MT4

标题: 寻找一款像十字准线能随K线移动的竖线指标 [打印本页]

作者: liuchenzhang    时间: 2018-1-11 13:20
标题: 寻找一款像十字准线能随K线移动的竖线指标
哪位老师有可以随K线移动的竖线指标,配合别的指标用。谢谢分享不胜感激。

作者: he012210    时间: 2018-1-11 13:49
我知道,看在你这么喜欢顶我的贴的份子上,可是我没有
作者: 双吉    时间: 2018-1-11 14:22
路过进来看看,赚点金币
作者: senli1206    时间: 2018-1-11 14:38
路过bangding
作者: tempasdf    时间: 2018-1-11 15:41
现成的 送你了 走过的路.....
[C++] 纯文本查看 复制代码//+------------------------------------------------------------------+
//|                                                     显示垂线.mq4 |
//|                                                                  |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright ""
#property link      ""
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
extern color 垂线颜色=DarkSeaGreen;
extern int 垂线样式=0; // 0实线 1断线 2点线 3断线与点线交替 4断线与双点线交替            
extern int 垂线粗细=2;
extern bool 是否全屏=true;
extern bool 于前景画对象=true;
extern int BarNum=0;
extern int ShowWindow=0;
int init()
  {
//---- indicators
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   ObjectDelete("FirstVLine");
   ObjectDelete("FirstTLine");   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   int    counted_bars=IndicatorCounted();
   string VLineName="FirstVLine";
   string TLineName="FirstTLine";   
   datetime BarTime;
   
     { BarTime=iTime(NULL,0,0)+PeriodSeconds()*BarNum; }
//----
   if(是否全屏==true)
     {
       ObjectDelete(TLineName);
       //if(ObjectFind(VLineName)!=0)
         {
           ObjectCreate(VLineName, OBJ_VLINE, ShowWindow, BarTime, WindowPriceMax(0));
           ObjectSet(VLineName, OBJPROP_COLOR, 垂线颜色);  
           ObjectSet(VLineName, OBJPROP_STYLE, 垂线样式);   
           ObjectSet(VLineName, OBJPROP_WIDTH, 垂线粗细);      
           ObjectSet(VLineName, OBJPROP_BACK,于前景画对象);        
         }
     }
   else
     {
       ObjectDelete(VLineName);     
       //if(ObjectFind(TLineName)!=0)
         {
           ObjectCreate(TLineName, OBJ_TREND, 0, BarTime, WindowPriceMin(0), BarTime, WindowPriceMax(0));
           ObjectSet(TLineName, OBJPROP_COLOR, 垂线颜色);  
           ObjectSet(TLineName, OBJPROP_STYLE, 垂线样式);  
           ObjectSet(TLineName, OBJPROP_WIDTH, 垂线粗细);  
           ObjectSet(TLineName, OBJPROP_RAY,true);   
           ObjectSet(TLineName, OBJPROP_BACK,于前景画对象);         
         }
         
     }
//----
   return(0);
  }
//+------------------------------------------------------------------+

作者: 啄木鸟    时间: 2018-1-11 16:29
路过进来看看
作者: 缘少    时间: 2018-1-11 17:12
有找到发出来分享一下,谢谢

作者: liuchenzhang    时间: 2018-1-11 17:46
@tempasdf  谢谢。但是你给我的指标不会自动随K线移动啊,我要的是会自动随着K线移动的。但还是谢谢你的分享。
作者: wy888www    时间: 2018-1-11 19:25
学习学习
作者: 小西瓜大魔王    时间: 2018-1-11 19:35
路过。。。。
作者: digit    时间: 2018-1-11 21:12

你是想这样?
[attach]17751[/attach]

作者: csxs    时间: 2018-1-11 22:14
谢谢digit 大  
作者: liuchenzhang    时间: 2018-1-11 22:41
@digit    非常感谢,。但我能不能再提点要求?能只有竖线没有横线呢?还有能不能鼠标和线是分离的呢?还有竖线能不消失吗?谢谢老师了,给你添麻烦了。
作者: 简练    时间: 2018-1-11 23:19
百搭百搭百搭百搭
作者: digit    时间: 2018-1-12 00:53

liuchenzhang
如果你仅仅需要一条竖线,可以这样:
[attach]17752[/attach]




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