2楼
Hawkie 大哥,出手吧,我知道你是高手!求求你了!!!!!!!!!!
韬客社区www.talkfx.co
3楼
帮忙啊!
韬客社区www.talkfx.co
发表于:2006-10-17 08:25只看该作者
4楼
Detrend Osillator=今天的收盘价-过去三天的简单平均移动。
过去3天的平均,什么平均?收盘价吗?
下面是=今天的收盘价-过去三天收盘价的简单平均移动。
//+------------------------------------------------------------------+
//| Detrend Osillator.mq4 |
//| |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright ""
#property link "http://www.metaquotes.net"
#property indicator_separate_window
#property indicator_color1 DodgerBlue
//---- input parameters
extern int DOPeriod=3;
//---- buffers
double Buffer;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,Buffer);
//---- name for DataWindow and indicator subwindow label
short_name="Detrend Osillator("+DOPeriod+")";
IndicatorShortName(short_name);
SetIndexLabel(0,short_name);
//----
SetIndexDrawBegin(0,DOPeriod);
//----
return(0);
}
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
//----
if(Bars<=DOPeriod) return(0);
//---- initial zero
if(counted_bars<1)
for(i=1;i<=DOPeriod;i++) Buffer[Bars-i]=0.0;
//----
i=Bars-DOPeriod-1;
if(counted_bars>=DOPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
Buffer=Close-iMA(NULL,0,DOPeriod,0,MODE_SMA,PRICE_CLOSE,i);
i--;
}
return(0);
}
5楼
出差了一个多星期,一直没时间上网,今天刚刚到家,看到大哥的程序真是开心。兄弟在此有礼了! 好人哪!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6楼
Trading with Dinapoli level 是一本很好的书,我正在读。里面有很多进场及止损的技巧。是英文的,如果有不懂要翻译 的地方尽管说话。兄弟英文还算可以
韬客社区www.talkfx.co
发表于:2006-10-25 05:43只看该作者
8楼
谢谢推荐,我去下载看看