大伊人青草狠狠久久-大伊香蕉精品视频在线-大伊香蕉精品一区视频在线-大伊香蕉在线精品不卡视频-大伊香蕉在线精品视频75-大伊香蕉在线精品视频人碰人

您現(xiàn)在的位置:程序化交易>> 期貨公式>> 文華財經(jīng)>> 文華財經(jīng)知識>>正文內(nèi)容

請問下這個mt4公式指標可以修改成文華的代碼嗎? [贏順期貨]

  • 咨詢內(nèi)容:

    #property indicator_separate_window
    #property indicator_minimum -10
    #property indicator_maximum 100
    #property indicator_buffers 6
    #property indicator_color1 Blue
    #property indicator_color2 Red
    #property indicator_color3 Green
    #property indicator_color4 Magenta
    #property indicator_color5 DodgerBlue
    #property indicator_color6 BlueViolet

    //---- input parameters
    extern int RSIOMA          = 14;
    extern int RSIOMA_MODE     = MODE_EMA;
    extern int RSIOMA_PRICE    = PRICE_CLOSE;

    extern int Ma_RSIOMA       = 21,
               Ma_RSIOMA_MODE  = MODE_EMA;

    extern int BuyTrigger      = 80;
    extern int SellTrigger     = 20;

    extern color BuyTriggerColor  = DodgerBlue;
    extern color SellTriggerColor = Magenta;

    extern int MainTrendLong   = 50;
    extern int MainTrendShort  = 50;

    extern color MainTrendLongColor     = Red;
    extern color MainTrendShortColor    = Green;

    //---- buffers
    double RSIBuffer[];
    double PosBuffer[];
    double NegBuffer[];

    double bdn[],bup[];
    double sdn[],sup[];

    double marsioma[];
    string short_name;
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function                         |
    //+------------------------------------------------------------------+
    int init()
      {
       short_name = StringConcatenate("RSIOMA(",RSIOMA,")");  
       IndicatorBuffers(8);
      
       SetIndexBuffer(0,RSIBuffer);
       SetIndexBuffer(2,bup);
       SetIndexBuffer(1,bdn);
       SetIndexBuffer(3,sdn);
       SetIndexBuffer(4,sup);
       SetIndexBuffer(5,marsioma);
      
       SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,3);
       SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_SOLID,1);
       SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,1);
       SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_SOLID,1);
       SetIndexStyle(4,DRAW_HISTOGRAM,STYLE_SOLID,1);
       SetIndexStyle(5,DRAW_LINE,STYLE_SOLID,1);
      
       SetIndexBuffer(6,PosBuffer);
       SetIndexBuffer(7,NegBuffer);
         
       IndicatorShortName(short_name);

       SetIndexDrawBegin(0,RSIOMA);
       SetIndexDrawBegin(1,RSIOMA);
       SetIndexDrawBegin(2,RSIOMA);
       SetIndexDrawBegin(3,RSIOMA);
       SetIndexDrawBegin(4,RSIOMA);
       SetIndexDrawBegin(5,RSIOMA);
       SetIndexDrawBegin(6,RSIOMA);
       SetIndexDrawBegin(7,RSIOMA);
    //----

     drawLine(BuyTrigger,"BuyTrigger", BuyTriggerColor);
       drawLine(SellTrigger,"SellTrigger", SellTriggerColor );
       drawLine(MainTrendLong,"MainTrendLong", MainTrendLongColor );
       drawLine(MainTrendShort,"MainTrendShort",MainTrendShortColor );

       return(0);
      }
    //+------------------------------------------------------------------+
    //| Relative Strength Index                                          |
    //+------------------------------------------------------------------+
    int start()
      {
      
     
      
       int    i,counted_bars=IndicatorCounted();
       double rel,negative,positive;
    //----
       if(Bars<=RSIOMA) return(0);
    //---- initial zero
       if(counted_bars<1)
          for(i=1;i<=RSIOMA;i++) RSIBuffer[Bars-i]=0.0;
    //----
       i=Bars-RSIOMA-1;
       int ma = i;
       if(counted_bars>=RSIOMA) i=Bars-counted_bars-1;
       while(i>=0)
         {
          double sumn=0.0,sump=0.0;
          if(i==Bars-RSIOMA-1)
            {
             int k=Bars-2;
             //---- initial accumulation
             while(k>=i)
               {
               
                double cma = iMA(Symbol(),0,RSIOMA,0,RSIOMA_MODE,RSIOMA_PRICE,k);
                double pma = iMA(Symbol(),0,RSIOMA,0,RSIOMA_MODE,RSIOMA_PRICE,k+1);
               
                rel=cma-pma;
               
                if(rel>0) sump+=rel;
                else      sumn-=rel;
                k--;
               }
             positive=sump/RSIOMA;
             negative=sumn/RSIOMA;
            }
          else
            {
             //---- smoothed moving average
             double ccma = iMA(Symbol(),0,RSIOMA,0,RSIOMA_MODE,RSIOMA_PRICE,i);
             double ppma = iMA(Symbol(),0,RSIOMA,0,RSIOMA_MODE,RSIOMA_PRICE,i+1);
               
             rel=ccma-ppma;
            
             if(rel>0) sump=rel;
             else      sumn=-rel;
             positive=(PosBuffer[i+1]*(RSIOMA-1)+sump)/RSIOMA;
             negative=(NegBuffer[i+1]*(RSIOMA-1)+sumn)/RSIOMA;
            }
          PosBuffer[i]=positive;
          NegBuffer[i]=negative;
          if(negative==0.0) RSIBuffer[i]=0.0;
          else
          {
              RSIBuffer[i]=100.0-100.0/(1+positive/negative);
             
              bdn[i] = 0;
              bup[i] = 0;
              sdn[i] = 0;
              sup[i] = 0;
             
              if(RSIBuffer[i]>MainTrendLong)
              bup[i] = -10;
             
              if(RSIBuffer[i]<MainTrendShort)
              bdn[i] = -10;
             
              if(RSIBuffer[i]<20 && RSIBuffer[i]>RSIBuffer[i+1])
              sup[i] = -10;
             
              if(RSIBuffer[i]>80 && RSIBuffer[i]<RSIBuffer[i+1])
              sdn[i] = -10;
               
             
          }   
          i--;
         }
        
         while(ma>=0)
         {
             marsioma[ma] = iMAOnArray(RSIBuffer,0,Ma_RSIOMA,0,Ma_RSIOMA_MODE,ma);
             ma--;
         }   
        
    //----
       return(0);
      }
    //+------------------------------------------------------------------+
    void drawLine(double lvl,string name, color Col )
    {
          
                ObjectDelete(name);
                ObjectCreate(name, OBJ_HLINE, WindowFind(short_name), Time[0], lvl,Time[0],lvl);
               
               
                ObjectSet(name, OBJPROP_STYLE, STYLE_DOT);
               
                ObjectSet(name, OBJPROP_COLOR, Col);       
                ObjectSet(name,OBJPROP_WIDTH,1);
             
          
    }

     

     



    此主題相關(guān)圖片如下:qq截圖20120706100459.jpg
    圖片點擊可在新窗口打開查看

     

  • 贏順技術(shù)人員:

    您可以將模型發(fā)在該貼中http://help.shwebstock.com.cn/dispbbs.asp?boardid=14&Id=199532,我們會及時編寫完后回復您

     

 

如果以上指標公式不適用于您常用的行情軟件

或者您想改編成選股公式,以便快速選出某種形態(tài)個股的話,

可以聯(lián)系我們相關(guān)技術(shù)人員 QQ: 262069696  點擊在線交流進行 有償 改編!

 


【字體: 】【打印文章】【查看評論

相關(guān)文章

    沒有相關(guān)內(nèi)容
主站蜘蛛池模板: 欧美a视频| 国产欧美成人 | 亚洲在线视频免费观看 | 精品国产系列 | 奇米777色 | 青青青国产在线手机免费观看 | 亚洲精品影视 | 波多野结衣一区二区三区四区 | 日韩麻豆国产精品欧美 | 久久成人在线视频 | 羞羞在线视频 | 伊人久久在线 | 久久机热re这里只有精品15 | 欧美精品www| 69色视频日韩在线视频 | 韩国高清乱理伦片中文 | 久久免费观看国产精品 | 久久99热精品免费观看k影院 | 国产精品一区在线播放 | 国产成人一级片 | 中国护士一级毛片免费版本 | 久久99热精品免费观看k影院 | 国产成人高清精品免费观看 | 国产网友自拍 | 一级特黄一欧美俄罗斯毛片 | 国产成人精品午夜在线播放 | 4huh34四虎最新久 | 很很色在线视频 | 国产福利在线观看视频 | 成人美女网 | 久久伊人操| 一本色道久久综合亚洲精品高清 | 最新国产精品好看的国产精品 | 国产精品久久久久久爽爽爽 | 欧美激情高清免费不卡 | 国产欧美日韩成人 | 一级毛片免费视频观看 | 国产一区二区精品久久岳 | 日本成人tv| 97热在线 | 多色视频|