[MT4指标]Chaikin蔡金指标
主图指标,Chaikin蔡金指标
mt4指标类型:震荡指标
是否能用在mt4手机版上:否
是否含有未来函数:无
//+------------------------------------------------------------------+
//| Chaikin.mq4 |
//| Copyright ? 2006, Yury V. Reshetov |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright \"Copyright ? 2006, Yury V. Reshetov ICQ: 282715499\"
#property link \"http://antigedel.boom.ru/\"
//---- indicator settings
#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;
double ind_buffer4;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- 2 additional buffers are used for counting.
IndicatorBuffers(4);
//---- drawing settings
SetIndexStyle(0,DRAW_LINE);
SetIndexDrawBegin(0,SignalSMA);
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+2);
//---- 3 indicator buffers mapping
if(!SetIndexBuffer(0,ind_buffer1) &&
!SetIndexBuffer(1,ind_buffer2) &&
!SetIndexBuffer(3,ind_buffer4) &&
!SetIndexBuffer(2,ind_buffer3))
Print(\"cannot set indicator buffers!\");
//---- name for DataWindow and indicator subwindow label
IndicatorShortName(\"Chaikin\");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Moving Average of Oscillator |
//+------------------------------------------------------------------+
int start()
{
int limit;
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;
//---- macd counted in the 1-st additional buffer
for(int i=0; i
发表于:2014-10-24 10:37只看该作者
2楼
韬客社区www.talkfx.co
发表于:2014-11-15 15:50只看该作者
3楼
谢谢分享
韬客社区www.talkfx.co
发表于:2014-12-26 06:34只看该作者
4楼
很不错的样子~谢谢楼主~
韬客社区www.talkfx.co
发表于:2015-06-07 04:59只看该作者
8楼
好的指标受用一辈子
韬客社区www.talkfx.co
发表于:2015-06-25 04:27只看该作者
9楼
谢谢分享~!!!
韬客社区www.talkfx.co
发表于:2015-07-01 11:55只看该作者
10楼
感谢您分享
韬客社区www.talkfx.co
发表于:2015-09-14 14:39只看该作者
12楼
很不错的样子~谢谢楼主~
韬客社区www.talkfx.co
发表于:2015-09-14 14:42只看该作者
13楼
感谢您分享
韬客社区www.talkfx.co
发表于:2015-09-14 14:42只看该作者
14楼
感谢您分享
韬客社区www.talkfx.co
发表于:2015-09-14 14:53只看该作者
15楼
谢谢分享!!!
韬客社区www.talkfx.co
发表于:2015-09-14 15:19只看该作者
16楼
這個指標不太會用呢~~~學學先
韬客社区www.talkfx.co
发表于:2015-09-15 01:33只看该作者
17楼
草龙哥,提个建议:能把指标运行的效果截个图发给大家看吗?这样一目了然。
韬客社区www.talkfx.co
发表于:2015-10-29 09:39只看该作者
18楼
這個指標不太會用呢~~~學學先
韬客社区www.talkfx.co
发表于:2016-12-07 10:19只看该作者
19楼
谢楼主的分享
韬客社区www.talkfx.co