[MT4指标]变色均线指标
变色均线主图指标
升降均线区分颜色
mt4指标类型:趋势指标
是否能用在mt4手机版上:否
是否含有未来函数:无//+----------------+
//| HMA.mq4 by Ron|
//+----------------+
/*
MetaStock Formula
period:=Input(\"Period\",1,200,20) ;
sqrtperiod:=Input(\"Square Root of Period\",1,20,4);
Mov(2*(Mov(C,period/2,W))-Mov(C,period,W),sqrtperiod,W);
SuperCharts Formula
Input: period (Default value 20)
waverage(2*waverage(close,period/2)-waverage(close,period), SquareRoot(Period))
Added color on direction change
*/
#property copyright \"Ron Thompson\"
#property link \"http://www.lightpatch.com/forex/\"
//---- indicator settings
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 LimeGreen
#property indicator_color2 Yellow
#property indicator_color3 Red
//User input
extern int HMA_Period=14;
extern int BarsToDraw=200;
// display buffers
double ind_buffer0;
double ind_buffer1;
double ind_buffer2;
// computation buffers
double buffer;
//Custom init
int init()
{
IndicatorBuffers(4);
SetIndexBuffer(0,ind_buffer0) ;
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2);
SetIndexBuffer(1,ind_buffer1);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,2);
SetIndexBuffer(2,ind_buffer2);
SetIndexStyle(2,DRAW_LINE,STYLE_SOLID,2);
SetIndexBuffer(3, buffer);
}
//Custom DE-init
int deinit()
{
}
// Main Program loop
int start()
{
int i;
int counted_bars=IndicatorCounted();
double tmp, tmpPrevious;
double fullMA;
double halfMA;
int fullPeriod = HMA_Period;
int halfPeriod = HMA_Period/2;
int sqrtPeriod = MathFloor(MathSqrt(HMA_Period*1.00));
//---- MA difference counted in the 1-st buffer
for(i=0; i tmp)
{
ind_buffer0 = EMPTY_VALUE;
ind_buffer1 = EMPTY_VALUE;
ind_buffer2 = tmpPrevious+0.0005;
ind_buffer2[i-1] = tmp-0.0005;
}
else if (tmpPrevious < tmp)
{
ind_buffer0 = tmpPrevious+0.0005;
ind_buffer0[i-1] = tmp-0.0005;
ind_buffer1 = EMPTY_VALUE;
ind_buffer2 = EMPTY_VALUE;
}
else
{
ind_buffer0 = CLR_NONE;
ind_buffer1 = tmpPrevious+0.0005;
ind_buffer2[i-1] = tmp-0.0005;
ind_buffer2 = CLR_NONE;
}
tmp = tmpPrevious;
}//for
}
发表于:2015-06-22 00:37只看该作者
2楼
非常感谢楼主!
韬客社区www.talkfx.co
发表于:2015-08-28 10:52只看该作者
3楼
谢谢分享
韬客社区www.talkfx.co
发表于:2015-09-07 08:30只看该作者
4楼
不知道能不能用,试试
韬客社区www.talkfx.co
发表于:2015-09-19 05:20只看该作者
5楼
非常感谢楼主!
文章转自于韬客外汇论坛www.talkfx.com:http://www.talkfx.com/thread-268658-1-3.html
韬客社区www.talkfx.co
发表于:2015-09-28 08:24只看该作者
6楼
有未来不
韬客社区www.talkfx.co
发表于:2015-09-28 08:24只看该作者
7楼
有未来不
韬客社区www.talkfx.co
发表于:2015-10-24 11:51只看该作者
9楼
有用
发表于:2015-10-24 12:22只看该作者
10楼
感谢分享
韬客社区www.talkfx.co
发表于:2016-12-07 10:21只看该作者
11楼
谢楼主的分享
韬客社区www.talkfx.co