求救,不会改 (文华财经WH8赢智V8.2)

投资者咨询:求救,不会改 (文华财经WH8赢智V8.2)
来源:文华财经  日期:2018-5-26 19:53
 您好,不会改成文华的。谢谢
#property copyright "Copyright ?2006, TrendLaboratory Ltd."
#property link      "http://finance.groups.yahoo.com/group/TrendLaboratory"
#property indicator_chart_window
#property indicator_buffers 6
#property indicator_color1 RoyalBlue
#property indicator_color2 Red
#property indicator_color3 RoyalBlue
#property indicator_color4 Red
#property indicator_color5 RoyalBlue
#property indicator_color6 Red
//2015-09-23 15:23:46 revised by fxmeter
//---- input parameters
extern int    Length=20;      // Bollinger Bands Period
extern int    Deviation=2;    // Deviation was 2
extern double MoneyRisk=1.00; // Offset Factor
extern int    Signal=1;       // Display signals mode: 1-Signals & Stops; 0-only Stops; 2-only Signals;
extern int    Line=1;         // Display line mode: 0-no,1-yes  
extern int    Nbars=1000;
extern bool SoundON=false;

//---- indicator buffers
double UpTrendBuffer[];
double DownTrendBuffer[];
double UpTrendSignal[];
double DownTrendSignal[];
double UpTrendLine[];
double DownTrendLine[];

bool TurnedUp = false;
bool TurnedDown = false;
double smax[25000],smin[25000],bsmax[25000],bsmin[25000];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
  int init()
  {
   string short_name;
//---- indicator line
   
   SetIndexBuffer(0,UpTrendBuffer);
   SetIndexBuffer(1,DownTrendBuffer);
   SetIndexBuffer(2,UpTrendSignal);
   SetIndexBuffer(3,DownTrendSignal);
   SetIndexBuffer(4,UpTrendLine);
   SetIndexBuffer(5,DownTrendLine);
   SetIndexStyle(0,DRAW_ARROW,0,1);
   SetIndexStyle(1,DRAW_ARROW,0,1);
   SetIndexStyle(2,DRAW_ARROW,0,1);
   SetIndexStyle(3,DRAW_ARROW,0,1);
   SetIndexStyle(4,DRAW_LINE);
   SetIndexStyle(5,DRAW_LINE);
   SetIndexArrow(0,159);
   SetIndexArrow(1,159);
   SetIndexArrow(2,108);
   SetIndexArrow(3,108);
   IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
//---- name for DataWindow and indicator subwindow label
   short_name="BBands Stop("+Length+","+Deviation+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,"UpTrend Stop");
   SetIndexLabel(1,"DownTrend Stop");
   SetIndexLabel(2,"UpTrend Signal");
   SetIndexLabel(3,"DownTrend Signal");
   SetIndexLabel(4,"UpTrend Line");
   SetIndexLabel(5,"DownTrend Line");
//----
   SetIndexDrawBegin(0,Length);
   SetIndexDrawBegin(1,Length);
   SetIndexDrawBegin(2,Length);
   SetIndexDrawBegin(3,Length);
   SetIndexDrawBegin(4,Length);
   SetIndexDrawBegin(5,Length);
//----
   return(0);
  }

//+------------------------------------------------------------------+
//| Bollinger Bands_Stop_v1                                             |
//+------------------------------------------------------------------+
int start()
  {
   int    shift,trend;
  
   
   for (shift=Nbars;shift>=0;shift--)
   {
   if(shift>Bars)continue;
   UpTrendBuffer[shift]=0;
   DownTrendBuffer[shift]=0;
   UpTrendSignal[shift]=0;
   DownTrendSignal[shift]=0;
   UpTrendLine[shift]=EMPTY_VALUE;
   DownTrendLine[shift]=EMPTY_VALUE;
   }
   
   for (shift=Nbars-Length-1;shift>=0;shift--)
   {
    if(shift>Bars-2)continue;
     smax[shift]=iBands(NULL,0,Length,Deviation,0,PRICE_CLOSE,MODE_UPPER,shift);
 smin[shift]=iBands(NULL,0,Length,Deviation,0,PRICE_CLOSE,MODE_LOWER,shift);
 if (Close[shift]>smax[shift+1]) trend=1; 
 if (Close[shift]<smin[shift+1]) trend=-1;
 if(trend>0 && smin[shift]<smin[shift+1]) smin[shift]=smin[shift+1];
 if(trend<0 && smax[shift]>smax[shift+1]) smax[shift]=smax[shift+1];
   
 bsmax[shift]=smax[shift]+0.5*(MoneyRisk-1)*(smax[shift]-smin[shift]);
 bsmin[shift]=smin[shift]-0.5*(MoneyRisk-1)*(smax[shift]-smin[shift]);
 if(trend>0 && bsmin[shift]<bsmin[shift+1]) bsmin[shift]=bsmin[shift+1];
 if(trend<0 && bsmax[shift]>bsmax[shift+1]) bsmax[shift]=bsmax[shift+1];
 
 if (trend>0) 
 {
    if (Signal>0 && UpTrendBuffer[shift+1]==-1.0)
    {
    UpTrendSignal[shift]=bsmin[shift];
    UpTrendBuffer[shift]=bsmin[shift];
    if(Line>0) UpTrendLine[shift]=bsmin[shift];
     if (SoundON==true && shift==0 && !TurnedUp)
         {
     Alert("BBands going Up on ",Symbol(),"-",Period());
                       TurnedUp = true;
            TurnedDown = false;
     }
    }
    else
    {
    UpTrendBuffer[shift]=bsmin[shift];
    if(Line>0) UpTrendLine[shift]=bsmin[shift];
    UpTrendSignal[shift]=-1;
    }
 if (Signal==2) UpTrendBuffer[shift]=0;   
 DownTrendSignal[shift]=-1;
 DownTrendBuffer[shift]=-1.0;
 DownTrendLine[shift]=EMPTY_VALUE;
 }
 if (trend<0) 
 {
 if (Signal>0 && DownTrendBuffer[shift+1]==-1.0)
    {
    DownTrendSignal[shift]=bsmax[shift];
    DownTrendBuffer[shift]=bsmax[shift];
    if(Line>0) DownTrendLine[shift]=bsmax[shift];
     if (SoundON==true && shift==0 && !TurnedDown)
         {
     Alert("BBands going Down on ",Symbol(),"-",Period());
            TurnedDown = true;
            TurnedUp = false;
     }
    }
    else
    {
    DownTrendBuffer[shift]=bsmax[shift];
    if(Line>0)DownTrendLine[shift]=bsmax[shift];
    DownTrendSignal[shift]=-1;
    }
 if (Signal==2) DownTrendBuffer[shift]=0;    
 UpTrendSignal[shift]=-1;
 UpTrendBuffer[shift]=-1.0;
 UpTrendLine[shift]=EMPTY_VALUE;
 }
 
}
return(0);
 }

技术人员回复
日期:2018-5-27 7:45
您这是MT4的源码吗?MT4编写语言和文华差异较大,不能直接改写的

您可以具体量化一下您的思路,我们根据思路直接帮助您改写为文华的指标
投资者咨询:求救,不会改 (文华财经WH8赢智V8.2)
来源:文华财经  日期:2018-5-26 19:53
 如图,该Dserg � LinRegression突围指标将搜索并显示盘整区域,在图表中稳定的渠道流动. 如果最后NLIN条的线性回归通道具有不超过2 *范围内的点的宽度, 那么我们得出一个新渠道. 今后,您可以在工作取得突破.箭头表示的输入, 止损和目标.

图片点击可在新窗口打开查看
技术人员回复
日期:2018-5-27 19:33
 您上面的指标含有FOR循环,wh6作为专业的看盘软件不支持这样复杂的思路

从截图看,类似于通道线,您可以在右上角》系统工具》指标管理器》趋势指标中研究一下系统自带的通道线

比如布林等指标,看下是否可以满足您的思路