您的域名(waterforex.com)未获得授权,部分功能受到影响! 
 
 
尊敬的用户: 
 
  您好!非常感谢您能安装和关注本产品,为了产品的可持续发展和升级,众大云采集已经开始收费。 
 
  向用户收费是为了给用户更可靠的保障和服务,所收取的费用主要用于产品的正常运作、研发和改进,希望各位能够理解和支持。 
 
  另外,为了答谢新老客户,众大云采集3折优惠,原价980元,现在购买仅需290元,给您节省了690元。 
 
  官方QQ群:23530791  客服QQ:155120699 
 
  购买域名授权请打开下面的网址: 
 
http://www.0762home.com/zt/csdn123_news/pay_url.php?url=waterforex.com 
 
  购买域名授权之后所有的未授权提示将自动消失,图片也正常显示,域名授权永久有效终身可用,后续的升级更新也是免费的,一次购买一辈子都能用,无后顾之忧! 
 
提示:您目前使用的是免费试用版,可以手动删除上面的授权提示,发布这篇文章! 
 
 
  
自定义指标函数 [Custom Indicator Functions] 
 
void IndicatorBuffers(int count) 
设置自定义指标缓存数 
:: 输入参数 
count - 缓存数量 
示例: 
#property indicator_separate_window 
#property indicator_buffers 1 
#property indicator_color1 Silver 
//---- indicator parameters 
extern int FastEMA=12; 
extern int SlowEMA=26; 
extern int SignalSMA=9; 
//---- indicator buffers 
double ind_buffer1[]; 
double ind_buffer2[]; 
double ind_buffer3[]; 
//+------------------------------------------------------------------+ 
//| Custom indicator initialization function | 
//+------------------------------------------------------------------+ 
int init() 
{ 
//---- 2 additional buffers are used for counting. 
IndicatorBuffers(3); 
//---- drawing settings 
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3); 
SetIndexDrawBegin(0,SignalSMA); 
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+2); 
//---- 3 indicator buffers mapping 
SetIndexBuffer(0,ind_buffer1); 
SetIndexBuffer(1,ind_buffer2); 
SetIndexBuffer(2,ind_buffer3); 
//---- name for DataWindow and indicator subwindow label 
IndicatorShortName("OsMA("+FastEMA+","+SlowEMA+","+SignalSMA+")"); 
//---- initialization done 
return(0); 
} 
 int IndicatorCounted() 
返回缓存数量 
示例: 
int start() 
{ 
int limit; 
int counted_bars=IndicatorCounted(); 
//---- check for possible errors 
if(counted_bars0) counted_bars--; 
limit=Bars-counted_bars; 
//---- main loop 
for(int i=0; i 
{ 
//---- ma_shift set to 0 because SetIndexShift called abowe 
ExtBlueBuffer=iMA(NULL,0,JawsPeriod,0,MODE_SMMA,PRICE_MEDIAN,i); 
ExtRedBuffer=iMA(NULL,0,TeethPeriod,0,MODE_SMMA,PRICE_MEDIAN,i); 
ExtLimeBuffer=iMA(NULL,0,LipsPeriod,0,MODE_SMMA,PRICE_MEDIAN,i); 
} 
//---- done 
return(0); 
} 
 void IndicatorDigits( int digits) 
设置指标精确度 
:: 输入参数 
digits - 小数点后的小数位数 
示例: 
#property indicator_separate_window 
#property indicator_buffers 1 
#property indicator_color1 Silver 
//---- indicator parameters 
extern int FastEMA=12; 
extern int SlowEMA=26; 
extern int SignalSMA=9; 
//---- indicator buffers 
double ind_buffer1[]; 
double ind_buffer2[]; 
double ind_buffer3[]; 
//+------------------------------------------------------------------+ 
//| Custom indicator initialization function | 
//+------------------------------------------------------------------+ 
int init() 
{ 
//---- 2 additional buffers are used for counting. 
IndicatorBuffers(3); 
//---- drawing settings 
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3); 
SetIndexDrawBegin(0,SignalSMA); 
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+2); 
//---- 3 indicator buffers mapping 
SetIndexBuffer(0,ind_buffer1); 
SetIndexBuffer(1,ind_buffer2); 
SetIndexBuffer(2,ind_buffer3); 
//---- name for DataWindow and indicator subwindow label 
IndicatorShortName("OsMA("+FastEMA+","+SlowEMA+","+SignalSMA+")"); 
//---- initialization done 
return(0); 
} 
 void IndicatorShortName( string name) 
设置指标的简称 
:: 输入参数 
name - 新的简称 
示例: 
#property indicator_separate_window 
#property indicator_buffers 1 
#property indicator_color1 Silver 
//---- indicator parameters 
extern int FastEMA=12; 
extern int SlowEMA=26; 
extern int SignalSMA=9; 
//---- indicator buffers 
double ind_buffer1[]; 
double ind_buffer2[]; 
double ind_buffer3[]; 
//+------------------------------------------------------------------+ 
//| Custom indicator initialization function | 
//+------------------------------------------------------------------+ 
int init() 
{ 
//---- 2 additional buffers are used for counting. 
IndicatorBuffers(3); 
//---- drawing settings 
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3); 
SetIndexDrawBegin(0,SignalSMA); 
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+2); 
//---- 3 indicator buffers mapping 
SetIndexBuffer(0,ind_buffer1); 
SetIndexBuffer(1,ind_buffer2); 
SetIndexBuffer(2,ind_buffer3); 
//---- name for DataWindow and indicator subwindow label 
IndicatorShortName("OsMA("+FastEMA+","+SlowEMA+","+SignalSMA+")"); 
//---- initialization done 
return(0); 
} 
 void SetIndexArrow( int index, int code) 
在指标上设置一个箭头符号 
:: 输入参数 
index - 第几根指标线 0-7 
code - 符号的编码,参照 Wingdings 字体 
示例: 
SetIndexArrow(0, 217); 
 bool SetIndexBuffer( int index, double array[]) 
设置指标线的缓存数组 
:: 输入参数 
index - 第几根指标线 0-7 
array[] - 缓存的数组 
示例: 
double ExtBufferSilver[]; 
int init() 
{ 
SetIndexBuffer(0, ExtBufferSilver); // set buffer for first line 
// ... 
} 
 void SetIndexDrawBegin( int index, int begin) 
设置划线的开始点 
:: 输入参数 
index - 第几根指标线 0-7 
begin - 划线的开始点 
示例: 
#property indicator_separate_window 
#property indicator_buffers 1 
#property indicator_color1 Silver 
//---- indicator parameters 
extern int FastEMA=12; 
extern int SlowEMA=26; 
extern int SignalSMA=9; 
//---- indicator buffers 
double ind_buffer1[]; 
double ind_buffer2[]; 
double ind_buffer3[]; 
//+------------------------------------------------------------------+ 
//| Custom indicator initialization function | 
//+------------------------------------------------------------------+ 
int init() 
{ 
//---- 2 additional buffers are used for counting. 
IndicatorBuffers(3); 
//---- drawing settings 
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3); 
SetIndexDrawBegin(0,SignalSMA); 
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+2); 
//---- 3 indicator buffers mapping 
SetIndexBuffer(0,ind_buffer1); 
SetIndexBuffer(1,ind_buffer2); 
SetIndexBuffer(2,ind_buffer3); 
//---- name for DataWindow and indicator subwindow label 
IndicatorShortName("OsMA("+FastEMA+","+SlowEMA+","+SignalSMA+")"); 
//---- initialization done 
return(0); 
} 
 void SetIndexEmptyValue( int index, double value)  
设置划线的空值,空值不划在和出现在数据窗口 
:: 输入参数 
index - 第几根指标线 0-7 
value - 新的空值 
示例: 
SetIndexEmptyValue(6,0.0001); 
 void SetIndexLabel( int index, string text)  
设置指标线的名称 
:: 输入参数 
index - 第几根指标线 0-7 
text - 线的名称,Null不会显示在数据窗口中 
示例: 
//+------------------------------------------------------------------+ 
//| Ichimoku Kinko Hyo initialization function | 
//+------------------------------------------------------------------+ 
int init() 
{ 
//---- 
SetIndexStyle(0,DRAW_LINE); 
SetIndexBuffer(0,Tenkan_Buffer); 
SetIndexDrawBegin(0,Tenkan-1); 
SetIndexLabel(0,"Tenkan Sen"); 
//---- 
SetIndexStyle(1,DRAW_LINE); 
SetIndexBuffer(1,Kijun_Buffer); 
SetIndexDrawBegin(1,Kijun-1); 
SetIndexLabel(1,"Kijun Sen"); 
//---- 
a_begin=Kijun; if(a_begin SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_DOT); 
SetIndexBuffer(2,SpanA_Buffer); 
SetIndexDrawBegin(2,Kijun+a_begin-1); 
SetIndexShift(2,Kijun); 
//---- Up Kumo bounding line does not show in the DataWindow 
SetIndexLabel(2,NULL); 
SetIndexStyle(5,DRAW_LINE,STYLE_DOT); 
SetIndexBuffer(5,SpanA2_Buffer); 
SetIndexDrawBegin(5,Kijun+a_begin-1); 
SetIndexShift(5,Kijun); 
SetIndexLabel(5,"Senkou Span A"); 
//---- 
SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_DOT); 
SetIndexBuffer(3,SpanB_Buffer); 
SetIndexDrawBegin(3,Kijun+Senkou-1); 
SetIndexShift(3,Kijun); 
//---- Down Kumo bounding line does not show in the DataWindow 
SetIndexLabel(3,NULL); 
//---- 
SetIndexStyle(6,DRAW_LINE,STYLE_DOT); 
SetIndexBuffer(6,SpanB2_Buffer); 
SetIndexDrawBegin(6,Kijun+Senkou-1); 
SetIndexShift(6,Kijun); 
SetIndexLabel(6,"Senkou Span B"); 
//---- 
SetIndexStyle(4,DRAW_LINE); 
SetIndexBuffer(4,Chinkou_Buffer); 
SetIndexShift(4,-Kijun); 
SetIndexLabel(4,"Chinkou Span"); 
//---- 
return(0); 
} 
 void SetIndexShift( int index, int shift) 
设置指标线的位移数 
:: 输入参数 
index - 第几根指标线 0-7 
shift - 位移多少 
示例: 
//+------------------------------------------------------------------+ 
//| Alligator initialization function | 
//+------------------------------------------------------------------+ 
int init() 
{ 
//---- line shifts when drawing 
SetIndexShift(0,JawsShift); 
SetIndexShift(1,TeethShift); 
SetIndexShift(2,LipsShift); 
//---- first positions skipped when drawing 
SetIndexDrawBegin(0,JawsShift+JawsPeriod); 
SetIndexDrawBegin(1,TeethShift+TeethPeriod); 
SetIndexDrawBegin(2,LipsShift+LipsPeriod); 
//---- 3 indicator buffers mapping 
SetIndexBuffer(0,ExtBlueBuffer); 
SetIndexBuffer(1,ExtRedBuffer); 
SetIndexBuffer(2,ExtLimeBuffer); 
//---- drawing settings 
SetIndexStyle(0,DRAW_LINE); 
SetIndexStyle(1,DRAW_LINE); 
SetIndexStyle(2,DRAW_LINE); 
//---- index labels 
SetIndexLabel(0,"Gator Jaws"); 
SetIndexLabel(1,"Gator Teeth"); 
SetIndexLabel(2,"Gator Lips"); 
//---- initialization done 
return(0); 
} 
 void SetIndexStyle( int index, int type, int style=EMPTY, int width=EMPTY, color clr=CLR_NONE)  
设置指标线的样式 
:: 输入参数 
index - 第几根指标线 0-7 
type - 线形状的种类,详见线条种类 
style - 划线的样式 
width - 显得宽度(1,2,3,4,5) 
clr - 线的颜色 
示例: 
SetIndexStyle(3, DRAW_LINE, EMPTY, 2, Red); 
 感谢您的阅读! 
欢迎关注: 
头条号: 
  
微信公众号: 
 
 
微博: |