老王吧 发表于 2016-5-19 15:52:49

SGMAR



//+------------------------------------------------------------------+
//|                                                                  |
//|               Copyright ?1999-2008, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.ru |
//+------------------------------------------------------------------+
#property indicator_separate_window
#property indicator_buffers 5
//----
#property indicator_color1 Lime
#property indicator_color2 Aqua
#property indicator_color3 Red
#property indicator_color4 DarkTurquoise
#property indicator_color5 Red
//----
#property indicator_level1 70
#property indicator_level2 50
#property indicator_level3 30
#property indicator_levelcolor Gray
#property indicator_levelwidth 1
#property indicator_levelstyle STYLE_DASH
//----
extern int    Rsi=14;
extern int    Ma=8;
extern int    cbars=0;
//----
double RsiBuf[];
double MaP[];
double MaF[];
double Up[];
double Dn[];
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
void init()
{
   SetIndexStyle (0, DRAW_LINE,0, 2);
   SetIndexStyle (1, DRAW_LINE,0,2);
   SetIndexStyle (2, DRAW_LINE,0,2);
   SetIndexStyle (3, DRAW_ARROW);
   SetIndexStyle (4, DRAW_ARROW);
   SetIndexBuffer(0, RsiBuf);
   SetIndexBuffer(1, MaP);
   SetIndexBuffer(2, MaF);
   SetIndexBuffer(3, Up);
   SetIndexBuffer(4, Dn);
   SetIndexEmptyValue(3,0);
   SetIndexEmptyValue(4,0);
   SetIndexArrow(3,108);
   SetIndexArrow(4,108);
}
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
void deinit()
{}
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
{
   int shift,limit=cbars;
   if(limit==0) limit=Bars;
   for(shift=limit-1; shift>=0; shift--)
   {
      RsiBuf=iRSI(NULL,0,Rsi,PRICE_CLOSE,shift);
   }
   for(shift=limit-1; shift>=0; shift--)
   {
      // First Indicator Data
      MaF=iMAOnArray(RsiBuf,0,Ma,0,MODE_SMA,shift);
      // Previous Indicator Data
      MaP=iMAOnArray(RsiBuf,0,Ma,0,MODE_EMA,shift);
      if((MaF-MaP)*(MaF-MaP)<0)
      {
         if(MaF-MaP<0) Up=MaP;
         else Dn=MaF;
      }
   }
}
//+------------------------------------------------------------------+

凯民 发表于 2016-8-6 17:18:36

DDDDDDDDDDDDDDDDDD

shine8898 发表于 2016-9-5 00:16:36


DDDDDDDDDDDDDDDDDD

wywl2016 发表于 2017-7-25 05:30:38

浮云浮云浮云浮云浮云浮云浮云浮云浮云

ncbxnz 发表于 2019-6-1 20:46:26

4444444444444444444444444444

小小云 发表于 2020-4-6 15:06:43

难得一见的好帖

真的有爱情 发表于 2020-6-22 16:30:22

帮你顶下哈!!

二货 发表于 2020-8-9 11:18:12

谢谢楼主分享

yuanxun 发表于 2020-8-16 14:27:04

帮你顶下哈!!

幸福烟灰 发表于 2020-11-7 11:38:15

顶下
页: [1] 2
查看完整版本: SGMAR