发表于:2007-11-15 04:15只看该作者
2楼
你看看:外汇软件品评 这个栏目
里面好像有讨论
我的毛病 想赢怕输 犹豫不定 盲目跟从 短线长做 长线短做 追涨杀跌 不做计划 擅改目标 贪多嫌少 逆市而为
最大的毛病:以上错误一犯再犯,怨天尤人,只说别人 不看自己。吃的是草,挤的是眼睛。
发表于:2007-11-15 04:18只看该作者
3楼
//+------------------------------------------------------------------+
//| 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);
}
[ 本帖最后由 管理员No.6 于 2007-11-15 15:18 编辑 ]
江湖没有关于我的传说嘛??
4楼
多谢南宫! 偶再试试看。偶的软件原来是双线的,重装系统后丢了。
发表于:2007-11-15 07:18只看该作者
6楼
● 新来会员请务必仔细阅读韬客外汇论坛汇友必读
并前往新手疑问解答和社区事务浏览了解论坛如何使用以及各板块情况。
● 对管理有意见或建议请到社区事务提出. 不听规劝一味在主版汇市讨论区纠缠扰乱秩序者会被处理。
● 为维护论坛秩序,欢迎举报非广告区和个人短信里的广告拉客,一经查实.将对举报者加分奖励!
5楼
偶把南宫提供的东东拷进indicators目录后,还是一条线。偶只好在看看了。:')
韬客社区www.talkfx.co