发表于:2009-05-12 01:47只看该作者
2楼
我顶帖主要是为升级 所以我见帖就顶:028: :028: :028:
韬客社区www.talkfx.co
发表于:2009-06-21 07:29只看该作者
3楼
//+------------------------------------------------------------------+
//| Custom MACD.mq4 |
//| Copyright ?2004, MetaQuotes Software Corp. |
//+------------------------------------------------------------------+
//| 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 1
#property indicator_color2 Red
#property indicator_width1 1
//---- indicator parameters
extern int FastEMA=5;
extern int SlowEMA=15;
//---- indicator buffers
double MacdBuffer;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{IndicatorBuffers(1);
//---- drawing settings
SetIndexStyle(0, DRAW_LINE);
SetIndexBuffer(0,MacdBuffer);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("MA5-ma10("+FastEMA+","+SlowEMA+",");
SetIndexLabel(0,"MACD");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Moving Averages Convergence/Divergence |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- 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; i
韬客社区www.talkfx.co
发表于:2010-01-25 10:41只看该作者
4楼
可以直接调用imacd()比较方便
韬客社区www.talkfx.co
发表于:2016-05-25 15:57只看该作者
5楼
我顶帖主要是为升级 所以我见帖就顶:028: :028: :028:
赢在均价,要有隔岸观火的均价!
发表于:2016-06-02 17:17只看该作者
6楼
通宝通宝!!
韬客社区www.talkfx.co
发表于:2016-06-03 09:49只看该作者
7楼
通报啥用
发表于:2016-06-06 15:59只看该作者
8楼
缺钱,灌水赚通宝,谢谢分享
韬客社区www.talkfx.co