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

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

求助,关于B%指标。【已解决】

  [复制链接]
240 6
aa98564 发表于 2018-1-11 14:40:48 | 只看该作者 |阅读模式 打印 上一主题 下一主题
指标值无法实时变动,一定要页面间切换才计算,不知道问题出在哪?望高手指教!~感激不尽!附:从MT4市场中购买的有这个指标,可以实时变动,但无法看到源码。MT4市场此指标是免费的。
代码如下:
extern int       bbPeriod=20;
extern int       bbDeviation=2;
extern int       bbPrice=0;
double PercentB[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   IndicatorShortName("%b - Period="+bbPeriod+"    ");   
   SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1,Blue);
   IndicatorDigits(Digits+1);
   SetIndexBuffer(0,PercentB);
   SetIndexLabel(0,"%b");
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   //Bar stuff
   int    counted_bars=IndicatorCounted(); int limit;
   if(counted_bars<0) return(-1);
   limit=Bars-counted_bars-1;
   for(int shift=0; shift<limit; shift++)
   {
      double bbUpper=iBands(NULL,0,bbPeriod,bbDeviation,0,bbPrice,MODE_UPPER,shift);
      double bbLower=iBands(NULL,0,bbPeriod,bbDeviation,0,bbPrice,MODE_LOWER,shift);
      PercentB[shift]=((Close[shift]-bbLower)/(bbUpper-bbLower))*100.0;
   }
   return(0);
  }
收藏
收藏0
转播
转播
分享
分享
分享
淘帖0

精彩评论6

跳转到指定楼层
沙发
tempasdf 发表于 2018-1-11 15:55:52 | 只看该作者
你没有看到 [ea] 中的错误 信息提示吗??         zero divide in
板凳
 楼主| aa98564 发表于 2018-1-11 17:17:51 | 只看该作者

不好意思,我这编译没有出现这个问题。真没看到。。求解决方案。
地板
 楼主| aa98564 发表于 2018-1-11 17:25:53 | 只看该作者

小改一下,问题依旧,是我写错了,还是别的原因?望指教。。谢谢~~
5#
tempasdf 发表于 2018-1-11 17:48:24 | 只看该作者

改后应该正常了呀
这样的指标 论坛上有的是http://www.520fx.com/thread-7693-1-1.html
6#
 楼主| aa98564 发表于 2018-1-11 18:19:30 | 只看该作者

谢谢你!~已收到。
7#
EUR168 发表于 2018-1-11 19:04:55 | 只看该作者
支持一波 谢谢了支持一波 谢谢了
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

发布主题
阅读排行更多+

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