查看:10715回复:13
[MT4指标]哪位高手帮助编写MT4慢速KD指标?
发表于:2005-06-20 07:11只看该作者
2楼
第一个参数是N参数,第二个是平常的K参数,第三个是慢速K参数,第四个是慢速D参数。
你自己用编辑器编译一下,还有问题再讨论。如果不会我再传编译过的文件。
//+------------------------------------------------------------------+
//| SLOWKD.mq4 |
//| Copyright ?2005, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Silver
#property indicator_color2 Yellow
//---- input parameters
extern int NPeriod=9;
extern int KPeriod=3;
extern int SKPeriod=3;
extern int SDPeriod=3;
double ind_buffer1;
double ind_buffer2;
double ind_buffer3;
double ind_buffer4;
double HighesBuffer;
double LowesBuffer;
int draw_begin1=0;
int draw_begin2=0;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- 2 additional buffers are used for counting.
IndicatorBuffers(6);
SetIndexBuffer(0, ind_buffer3);
SetIndexBuffer(1, ind_buffer4);
SetIndexBuffer(2, ind_buffer1);
SetIndexBuffer(3, ind_buffer2);
SetIndexBuffer(4, HighesBuffer);
SetIndexBuffer(5, LowesBuffer);
//---- indicator lines
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0, ind_buffer3);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1, ind_buffer4);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("SLOWKD("+NPeriod+","+KPeriod+","+SKPeriod+","+SDPeriod+")");
SetIndexLabel(0,"K");
SetIndexLabel(1,"D");
//----
draw_begin1=NPeriod+SKPeriod;
draw_begin2=draw_begin1+KPeriod;
SetIndexDrawBegin(0,draw_begin1);
SetIndexDrawBegin(1,draw_begin2);
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int start()
{
int i,k;
int counted_bars=IndicatorCounted();
double price;
//----
if(Bars<=draw_begin2) return(0);
//---- initial zero
if(counted_bars<1)
{
for(i=1;i<=draw_begin1;i++) ind_buffer1[Bars-i]=0;
for(i=1;i<=draw_begin2;i++) ind_buffer2[Bars-i]=0;
}
//---- minimums counting
i=Bars-NPeriod;
if(counted_bars>NPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double min=1000000;
k=i+NPeriod-1;
while(k>=i)
{
price=Low[k];
if(min>price) min=price;
k--;
}
LowesBuffer=min;
i--;
}
//---- maximums counting
i=Bars-NPeriod;
if(counted_bars>NPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double max=-1000000;
k=i+NPeriod-1;
while(k>=i)
{
price=High[k];
if(maxdraw_begin1) i=Bars-counted_bars-1;
while(i>=0)
{
double sumlow=0.0;
double sumhigh=0.0;
for(k=(i+SKPeriod-1);k>=i;k--)
{
sumlow+=Close[k]-LowesBuffer[k];
sumhigh+=HighesBuffer[k]-LowesBuffer[k];
}
if(sumhigh==0.0) ind_buffer1=100.0;
else ind_buffer1=sumlow/sumhigh*100;
i--;
}
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
//---- signal line is simple movimg average
for(i=0; i
发表于:2005-06-20 08:03只看该作者
3楼
感谢。
讨论行情走势,交流心得体会
发表于:2005-06-20 08:41只看该作者
4楼
为什么我上传zip格式附件,总说不行?:Q
要么怎么才可以上传,斑竹告诉我一下,改名?
[ Last edited by hawkie on 2005-6-20 at 16:44 ]
发表于:2005-06-20 12:47只看该作者
5楼
这里不能上传非图片格式的文件,很不方便di
韬客社区www.talkfx.co
发表于:2005-06-20 13:57只看该作者
7楼
Originally posted by 富贵 at 2005-6-20 16:03 感谢。
发表于:2005-06-21 02:49只看该作者
8楼
.......有点事情 下午1点的时候上传 不好意思哈
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-06-22 14:40只看该作者
10楼
请教老正,如何把原代码导入MT系统中使用。谢谢!!!!
发表于:2005-06-22 23:01只看该作者
11楼
解压后
放入
MetaTrader 4\experts\indicators 目录里面
关闭mt4 从新打开
然后在导航的自定义指标里就可以找到了
或者
在 插入 技术指标 自定义指标 里面找到 talkforex-SLOWKD-BYhawkie 这个指标 点击后就会出现图了
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2006-11-13 07:45只看该作者
12楼
谢谢
韬客社区www.talkfx.co
发表于:2008-09-19 04:27只看该作者
13楼
楼主,能不能帮我弄个,唐纳德·多西(Donald Dorsey)惯性指标(Inertia
)的MT4指标?我都不会弄,也不知道那里找到原代码,能不能帮帮我,弄个给我?谢谢!
韬客社区www.talkfx.co
发表于:2012-06-26 15:45只看该作者
14楼
麻烦hawkie老师也帮我改一下这个公式吧,跟楼主说的一样,只是多了个J值!
x:20,COLOR00BF00;
s:80,COLORFFA500;
RSVA:= (CLOSE-LLV(LOW,N))/(HHV(HIGH,N)-LLV(LOW,N))*100;
FASTKA:=SMA(RSVA,M1,1);
K:SMA(FASTKA,M1,1),COLOR0000FF;
D:SMA(K,M1,1),COLOR00FF00;
A:=3*K-2*D;
J:EMA(A,M2);
参数
N 1 100 12
M1 1 100 3
M2 1 100 3
韬客社区www.talkfx.co