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

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

求助:osc指标运行无错,但没显示

  [复制链接]
650 14
pang1688 发表于 2018-1-11 13:28:07 | 只看该作者 |阅读模式 打印 上一主题 下一主题
求大师帮忙看看这码,怎么在附图上没显示画线呢,谢谢!!
//+------------------------------------------------------------------+
//|                                                      TSI-Osc.mq4 |
//|                      Copyright ?2005, MetaQuotes Software Corp. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2005, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net"
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red
#property indicator_maximum 100
#property indicator_minimum -100
#property indicator_level1 0
#property indicator_level2 50
#property indicator_level3 -50
//---- input parameters
// M5 and M15 , 8,8,8
// M30 7,7,7
// H1 and H4 6,6,6
extern int First_R = 7;
extern int Second_S = 7;
extern int SignalPeriod = 7;
//---- buffers
double TSI_Buffer[];
double SignalBuffer[];
double MTM_Buffer[];
double EMA_MTM_Buffer[];
double EMA2_MTM_Buffer[];
double ABSMTM_Buffer[];
double EMA_ABSMTM_Buffer[];
double EMA2_ABSMTM_Buffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators
   IndicatorBuffers(8);
   SetIndexBuffer(2, MTM_Buffer);
   SetIndexBuffer(3, EMA_MTM_Buffer);
   SetIndexBuffer(4, EMA2_MTM_Buffer);
   SetIndexBuffer(5, ABSMTM_Buffer);
   SetIndexBuffer(6, EMA_ABSMTM_Buffer);
   SetIndexBuffer(7, EMA2_ABSMTM_Buffer);
   SetIndexStyle(0, DRAW_LINE);
   SetIndexBuffer(0, TSI_Buffer);
   SetIndexLabel(0, "TSI");
   SetIndexStyle(1, DRAW_LINE);
   SetIndexBuffer(1, SignalBuffer);
   SetIndexLabel(1, "Signal");
//----
   IndicatorShortName("TSIOsc" + "(" + First_R + "," + Second_S + "," + SignalPeriod + ")");
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   int counted_bars = IndicatorCounted();
   int limit, i;
   limit = Bars - counted_bars - 1;
   for(i = Bars - 1; i >= 0; i--)
     {
       MTM_Buffer[i] = (Close[i] - Close[i+1]);
       MTM_Buffer[i]=((High[i]+Low[i])/2)-((High[i+1]+Low[i+1])/2);
       MTM_Buffer[i]=(((Close[i]-Close[i+1])/Close[i+1])+Point);
       MTM_Buffer[i]=iMomentum(NULL,0,1,PRICE_CLOSE,i)-iMomentum(NULL,0,1,PRICE_CLOSE,i+1);
       MTM_Buffer[i]=iMomentum(NULL,0,1,PRICE_CLOSE,i)-iMomentum(NULL,0,1,PRICE_CLOSE,i+1);
       MTM_Buffer[i]=iMomentum(NULL,0,1,PRICE_CLOSE,i)-iMomentum(NULL,0,1,PRICE_CLOSE,i+1);
       ABSMTM_Buffer[i] = MathAbs(MTM_Buffer[i]);
     }
   for(i = Bars - 1; i >= 0; i--)
     {
       EMA_MTM_Buffer[i] = iMAOnArray(MTM_Buffer, 0, First_R, 0, MODE_EMA, i);
       EMA_ABSMTM_Buffer[i] = iMAOnArray(ABSMTM_Buffer, 0, First_R, 0, MODE_EMA, i);
     }
   for(i = Bars - 1; i >= 0; i--)
     {
       EMA2_MTM_Buffer[i] = iMAOnArray(EMA_MTM_Buffer, 0, Second_S, 0, MODE_EMA, i);
       EMA2_ABSMTM_Buffer[i] = iMAOnArray(EMA_ABSMTM_Buffer, 0, Second_S, 0, MODE_EMA, i);
     }
   for(i = limit; i >= 0; i--)
     {
       TSI_Buffer[i] = 100.0*EMA2_MTM_Buffer[i] / EMA2_ABSMTM_Buffer[i];
     }
   for(i = limit; i >= 0; i--)
     {
       SignalBuffer[i] = iMAOnArray(TSI_Buffer, 0, SignalPeriod, 0, MODE_EMA, i);
     }
   return(0);
  }
//+------------------------------------------------------------------+
收藏
收藏0
转播
转播
分享
分享
分享
淘帖0

精彩评论14

跳转到指定楼层
沙发
panda88 发表于 2018-1-11 13:56:00 | 只看该作者
找大师帮忙
板凳
 楼主| pang1688 发表于 2018-1-11 14:49:10 | 只看该作者

求大师现身
地板
siung85 发表于 2018-1-11 15:54:27 | 只看该作者
感谢分享。
5#
wbl_1 发表于 2018-1-11 16:45:13 | 只看该作者
哪个呦,发这么好的帖子,顶你
6#
ggg750075 发表于 2018-1-11 17:19:25 | 只看该作者
顶你顶你顶你
7#
349309448 发表于 2018-1-11 18:03:28 | 只看该作者
谢谢分享
8#
wbl_1 发表于 2018-1-11 18:11:42 | 只看该作者
没看完~~~~~~ 先顶,好同志
9#
wbl_1 发表于 2018-1-11 19:43:02 | 只看该作者
参考参考,我认为很好,大家说说
10#
wbl_1 发表于 2018-1-11 20:43:22 | 只看该作者
要顶的啊,楼主辛苦了,谢谢
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

发布主题
阅读排行更多+

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