[MT4指标]外汇阻击手的cci波段指标
附图指标,外汇阻击手的cci波段指标
mt4指标类型:趋势指标
是否能用在mt4手机版上:否
是否含有未来函数:无
使用cci指标以及波段趋势指标来指示未来趋势的走向
//+------------------------------------------------------------------+
//| Louw Coetzer aka FX Sniper |
//| Copyright ? 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright ? 2004, Fx Sniper."
#property link "http://www.dunno.net/"
//---- indicator settings
#property indicator_separate_window
#property indicator_buffers 6
#property indicator_color1 Blue
#property indicator_color2 White
#property indicator_color3 White
#property indicator_color4 Yellow
#property indicator_color5 Lime
#property indicator_color6 Red
extern int CCI_period=14;
extern int Bollinger_period=50;
extern int Bollinger_deviation = 2;
extern int Bollinger_shift = 0;
//---- indicator buffers
double MainCCI;
double BUpper;
double BLower;
double BMain;
double cciHup;
double cciHdn;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- 2 additional buffers are used for counting.
IndicatorBuffers(8);
//---- drawing settings
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,1);
SetIndexStyle(2,DRAW_LINE,STYLE_SOLID,1);
SetIndexStyle(3,DRAW_LINE,STYLE_DOT,1);
SetIndexStyle(4,DRAW_HISTOGRAM,0,1);
SetIndexStyle(5,DRAW_HISTOGRAM,0,1);
SetIndexBuffer(0,MainCCI);
SetIndexLabel(0,"CCI Indicator");
SetIndexBuffer(1,BUpper);
SetIndexBuffer(2,BLower);
SetIndexBuffer(3,BMain);
SetIndexLabel(3,"Bollinger Median Line");
SetIndexBuffer(4,cciHup);
SetIndexBuffer(5,cciHdn);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("FX Sniper CCI with Bollinger Bands ");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Calculations |
//+------------------------------------------------------------------+
int start()
{
int limit;
int i;
int counted_bars=IndicatorCounted();
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- main loop
for(i=0; i= 0 )
cciHup = MainCCI;
else
cciHup = 0;
}
for(i=0; iFX%20Sniper%27s%20Ergodic_CCI_BB.jpg
发表于:2014-04-10 07:50只看该作者
2楼
高科技啊~!
韬客社区www.talkfx.co
发表于:2014-07-08 06:51只看该作者
3楼
看着不错的样子
韬客社区www.talkfx.co
发表于:2014-07-15 10:37只看该作者
4楼
灌水升级
戒贪
发表于:2014-07-29 08:41只看该作者
5楼
韬客社区www.talkfx.co
发表于:2014-10-24 11:32只看该作者
6楼
不错的样子
发表于:2014-11-01 10:31只看该作者
7楼
不错的样子
韬客社区www.talkfx.co
发表于:2014-11-01 10:31只看该作者
8楼
不错的样子
韬客社区www.talkfx.co
发表于:2014-12-26 06:36只看该作者
9楼
这应该很好用喔~感谢
韬客社区www.talkfx.co
发表于:2015-01-05 13:33只看该作者
10楼
很不错的样子~谢谢楼主~
韬客社区www.talkfx.co
发表于:2015-01-06 03:16只看该作者
11楼
很不错的样子~谢谢楼主~
韬客社区www.talkfx.co
发表于:2015-01-21 05:22只看该作者
12楼
感谢分享。。。。。
韬客社区www.talkfx.co
发表于:2015-01-31 11:46只看该作者
13楼
谢谢楼主~
韬客社区www.talkfx.co
发表于:2015-01-31 12:13只看该作者
14楼
怎么用?一直看不明白MQL,有什么书推荐吗
韬客社区www.talkfx.co
发表于:2017-06-17 05:02只看该作者
15楼
7777777777777777777777777
韬客社区www.talkfx.co
发表于:2017-06-17 07:10只看该作者
16楼
必须试一下
发表于:2017-06-18 00:17只看该作者
17楼
8888
韬客社区www.talkfx.co
发表于:2017-06-19 04:52只看该作者
18楼
66666
韬客社区www.talkfx.co
发表于:2017-08-07 02:37只看该作者
19楼
谢谢分享~~~~~~~~~~~
韬客社区www.talkfx.co
发表于:2017-10-07 11:46只看该作者
20楼
还能有这样子的指标
韬客社区www.talkfx.co