[MT4指标]rick_321修改过的MT4.0macd指标
谢谢 rick_321
解压后
放入
MetaTrader 4\experts\indicators 目录里面
关闭mt4 从新打开
然后在导航的自定义指标里就可以找到了
或者
在 插入 技术指标 自定义指标 里面找到 MACD_talkforex_rick_321 这个指标 点击后就会出现图了
[ Last edited by 老正 on 2005-5-30 at 10:54 ]MACD_talkforex_rick_321.zip
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
2楼
//+------------------------------------------------------------------+
//| Custom MACD.mq4 |
//| Copyright ?2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"
//---- indicator settings
#property indicator_separate_window
#property indicator_buffers 4
#property indicator_color1 Blue
#property indicator_color2 Black
#property indicator_color3 Red
#property indicator_color4 Green
//int indicator_color3;
//---- 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;
double temp;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,1);
SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_SOLID,1);
SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_SOLID,1);
SetIndexDrawBegin(1,SignalSMA);
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+1);
//---- indicator buffers mapping
if(!SetIndexBuffer(0,ind_buffer1) && !SetIndexBuffer(1,ind_buffer2)&& !SetIndexBuffer(2,ind_buffer3)&& !SetIndexBuffer(3,ind_buffer4))
Print("cannot set indicator buffers!");
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("MACD("+FastEMA+","+SlowEMA+","+SignalSMA+")");
SetIndexLabel(0,"MACD");
SetIndexLabel(1,"Signal");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Moving Averages Convergence/Divergence |
//+------------------------------------------------------------------+
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 buffer
for(int i=0; i0) {ind_buffer3=temp;ind_buffer4=0;}
else {ind_buffer3=0;ind_buffer4=temp;}
}
//---- done
return(0);
}
[ Last edited by 老正 on 2005-5-30 at 16:34 ]
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-05-30 02:52只看该作者
3楼
tq
发表于:2005-05-30 06:29只看该作者
4楼
这回是两条线了
[ Last edited by chenzhi on 2005-5-30 at 14:32 ]
韬客社区www.talkfx.co
发表于:2005-05-30 17:45只看该作者
5楼
请问为何我的是单线??谢谢!!
[ Last edited by yj18 on 2005-5-31 at 01:58 ]ou0.gif
TALKFOREX.COM
6楼
他有根线是黑色的 你改动下颜色就可
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-05-31 01:51只看该作者
7楼
OK
[ Last edited by rx-8 on 2005-5-31 at 09:54 ]
韬客社区www.talkfx.co
发表于:2005-05-31 05:04只看该作者
8楼
Originally posted by 老正 at 2005-5-31 07:52 他有根线是黑色的 你改动下颜色就可
发表于:2005-06-27 00:42只看该作者
9楼
韬客社区www.talkfx.co
发表于:2005-07-04 14:48只看该作者
10楼
谢谢 老正 risk32
我的空间http://www.talkforex.com/blog/?13605欢迎指导交流
发表于:2005-07-28 02:50只看该作者
11楼
俺叫rick_321
不是risk啊
哈哈
韬客社区www.talkfx.co
发表于:2005-08-06 10:02只看该作者
12楼
MT3.85的macd怎么就不能改呢
心态平和 耐心等待
13楼
原帖由 yee2001 于 2005-8-6 18:02 发表 MT3.85的macd怎么就不能改呢
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-08-07 16:01只看该作者
14楼
请问老正,我找不到experts,在哪个目录下啊
冷静观察、稳住阵脚、沉着应付、韬光养晦、有所作为、决不当头。
发表于:2005-08-07 17:37只看该作者
15楼
多谢!!!
16楼
原帖由 在水一方 于 2005-8-8 00:01 发表 请问老正,我找不到experts,在哪个目录下啊
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-08-08 01:20只看该作者
17楼
请问老正,我出现了5楼的情况,颜色改变没有下拉菜单,该怎么做呀?
冷静观察、稳住阵脚、沉着应付、韬光养晦、有所作为、决不当头。
发表于:2005-08-08 01:29只看该作者
18楼
谢谢,问题解决了
冷静观察、稳住阵脚、沉着应付、韬光养晦、有所作为、决不当头。
发表于:2005-12-06 08:43只看该作者
20楼
正版,我不会啊,这个帖我已经下载过,但是不会解压-放入-.....
自定义里也没有talkmacd-by-fywz。
不爱止损!哼,就酱紫~就酱紫~ 就酱紫~~