请秃鹫老师帮个忙,关于引用大周期数据跑小周期的问题
秃鹫老师您好!
想请教您High-Low这个指标的问题
我想将他做成引用4H的前五根最高价跟最低价,用在低于4H以下的时间架构,修改了好久都不行,只能在图形上只能跑当周期的数值,能否请老师拨空修改一下. 谢谢!!!
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 MediumSpringGreen
#property indicator_color2 DeepPink
extern int COUNT=5;
double HighBuffer;
double LowBuffer;
int init()
{
SetIndexStyle(0,DRAW_LINE,2,2);
SetIndexStyle(1,DRAW_LINE,2,2);
IndicatorDigits(Digits);
SetIndexBuffer(0,HighBuffer);
SetIndexBuffer(1,LowBuffer);
SetIndexLabel(0,"UAT");
SetIndexLabel(1,"DAT");
return(0);
}
int start()
{
int limit;
int counted_bars=IndicatorCounted();
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
for(int i=limit; i>=0;i--)
{
double up=High[Highest(NULL,PERIOD_H4,MODE_HIGH,count,i+1)];
double dp=Low[Lowest(NULL,PERIOD_H4,MODE_LOW,count,i+1)];
HighBuffer=up;
LowBuffer=dp;
}
return(0);
}
发表于:2008-04-16 22:31只看该作者
2楼
稍微改了一下
[ 本帖最后由 秃鹫 于 2008-4-17 06:39 编辑 ]High_Low[1].mq4
4楼
老師您好!!
我剛剛比對了一下,發現數據跑的好像不一樣,在H1裡MT4依然是跑H1的數據(H4*5=H1*20),我附上圖片請老師看看
[localimg=400,288]1[/localimg]
E2.jpg
5楼
MT4的圖
E1.jpg
发表于:2008-04-18 09:11只看该作者
7楼
你的程序改得不对
结果应该象下图这样才是正确的hl.gif
发表于:2017-08-18 03:14只看该作者
8楼
学习了 谢谢
韬客社区www.talkfx.co