比特币通信协议 - 币圈消息

比特币通信协议篇11、二、TURN简介。在典型的情况下,TURN客户端连接到内网中,并且通过一个或者多个NAT到 详细

寻找一款像十字准线能随K线移动的竖线指标

  [复制链接]
658 14
liuchenzhang 发表于 2018-1-11 13:20:53 | 只看该作者 |阅读模式 打印 上一主题 下一主题
哪位老师有可以随K线移动的竖线指标,配合别的指标用。谢谢分享不胜感激。
收藏
收藏0
转播
转播
分享
分享
分享
淘帖0

精彩评论14

跳转到指定楼层
沙发
he012210 发表于 2018-1-11 13:49:35 | 只看该作者
我知道,看在你这么喜欢顶我的贴的份子上,可是我没有
板凳
双吉 发表于 2018-1-11 14:22:29 | 只看该作者
路过进来看看,赚点金币
地板
senli1206 发表于 2018-1-11 14:38:08 | 只看该作者
路过bangding
5#
tempasdf 发表于 2018-1-11 15:41:53 | 只看该作者
现成的 送你了 走过的路.....
[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);
  }
//+------------------------------------------------------------------+
6#
啄木鸟 发表于 2018-1-11 16:29:26 | 只看该作者
路过进来看看
7#
缘少 发表于 2018-1-11 17:12:26 | 只看该作者
有找到发出来分享一下,谢谢
8#
 楼主| liuchenzhang 发表于 2018-1-11 17:46:40 | 只看该作者
@tempasdf  谢谢。但是你给我的指标不会自动随K线移动啊,我要的是会自动随着K线移动的。但还是谢谢你的分享。
9#
wy888www 发表于 2018-1-11 19:25:58 | 只看该作者
学习学习
10#
小西瓜大魔王 发表于 2018-1-11 19:35:58 | 只看该作者
路过。。。。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

发布主题
阅读排行更多+

Powered by 顺水鱼MT4外汇EA网! X3.2© 2001-2017 顺水MT4外汇EA公司.( 陕ICP备17014341号-1