HAWKIE请进
我搞到了一个HEIKEN ASHI的源代码,想把它转成飞狐公式,可是里面有一句"haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;"搞不懂是怎么回事,你能帮我把它转成飞狐的吗? 多谢.
//+------------------------------------------------------------------+
//| Heiken Ashi.mq4 |
//| Copyright ?2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
//| For Heiken Ashi we recommend next chart settings ( press F8 or |
//| select on menu 'Charts'->'Properties...'): |
//| - On 'Color' Tab select 'Black' for 'Line Graph' |
//| - On 'Common' Tab disable 'Chart on Foreground' checkbox and |
//| select 'Line Chart' radiobutton |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Red
#property indicator_color2 White
#property indicator_color3 Red
#property indicator_color4 White
//---- buffers
double ExtMapBuffer1;
double ExtMapBuffer2;
double ExtMapBuffer3;
double ExtMapBuffer4;
//----
int ExtCountedBars=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//|------------------------------------------------------------------|
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM, 0, 1, Red);
SetIndexBuffer(0, ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM, 0, 1, White);
SetIndexBuffer(1, ExtMapBuffer2);
SetIndexStyle(2,DRAW_HISTOGRAM, 0, 3, Red);
SetIndexBuffer(2, ExtMapBuffer3);
SetIndexStyle(3,DRAW_HISTOGRAM, 0, 3, White);
SetIndexBuffer(3, ExtMapBuffer4);
//----
SetIndexDrawBegin(0,10);
SetIndexDrawBegin(1,10);
SetIndexDrawBegin(2,10);
SetIndexDrawBegin(3,10);
//---- indicator buffers mapping
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexBuffer(3,ExtMapBuffer4);
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
double haOpen, haHigh, haLow, haClose;
if(Bars<=10) return(0);
ExtCountedBars=IndicatorCounted();
//---- check for possible errors
if (ExtCountedBars<0) return(-1);
//---- last counted bar will be recounted
if (ExtCountedBars>0) ExtCountedBars--;
int pos=Bars-ExtCountedBars-1;
while(pos>=0)
{
haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;
haClose=(Open[pos]+High[pos]+Low[pos]+Close[pos])/4;
haHigh=MathMax(High[pos], MathMax(haOpen, haClose));
haLow=MathMin(Low[pos], MathMin(haOpen, haClose));
if (haOpenhelp.GIF
2楼
我觉得这个公式如果再结合其他条件优化一下就很好了.可惜我MT还是一知半解,所以麻烦你帮我转成飞狐的.有劳了
韬客社区www.talkfx.co
发表于:2005-07-29 03:11只看该作者
3楼
不就是数组变量引用嘛,飞狐编程我不熟悉。抱歉
发表于:2005-07-29 09:44只看该作者
4楼
不好用的,它的k线和真实K线相差很大
韬客社区www.talkfx.co
发表于:2005-08-01 16:40只看该作者
6楼
哈哈,笨笨兄弟遍走天下啊。
"haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;"
就是把前一次已经平均了的haOpen和haClose的平均价作为当前单位的haOpen价了啊。
韬客社区www.talkfx.co
7楼
呵呵,多谢楚天.
最近我不怎么研究国内股软了,还是股票思维,缺陷太多,自己的操作策略也没有办法测试.所以开始研究MT之类的.同时向大家推荐一些国外外汇论坛,如果英语OK的话,会学到很多的.
http://trader.online.pl/MSZ/e-w-Fractal_Retracements.html
http://www.strategybuilderfx.com/forums/index.php?
www.moneytec.com
韬客社区www.talkfx.co
发表于:2005-08-02 04:29只看该作者
8楼
好啊。
我现在对MT很感兴趣,打算继续深入研究。
韬客社区www.talkfx.co
发表于:2005-08-02 07:19只看该作者
9楼
.......都比偶厉害......
偶对mt怪了 就是不入门........
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-08-02 08:28只看该作者
10楼
正老只管主持大局,剩下的活大家分着干哈。
韬客社区www.talkfx.co
发表于:2005-08-02 08:34只看该作者
11楼
原帖由 Zukunft 于 2005-7-29 17:44 发表 不好用的,它的k线和真实K线相差很大
韬客社区www.talkfx.co
发表于:2005-08-02 12:56只看该作者
12楼
原帖由 楚天 于 2005-8-2 16:28 发表 正老只管主持大局,剩下的活大家分着干哈。
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度