PureBytes Links
Trading Reference Links
|
Hello Alex,
Ed has posted a code recently, just change your start and end time.
startTime = 153000;
EndTime = 163000;
// assign an array tt having a value 1 inside the interval
tt = IIf(TimeNum() >= startTime AND TimeNum() <= endTime,1,0);
// high within interval
htt = IIf(TimeNum() >= startTime AND TimeNum() <= endTime,H,0);
// start bar of interval is 1, end bar is -1
dtt = tt - Ref(tt,-1);
// calculate the cumulative number of bars inside the interval
bs = BarsSince( dtt == 1 ) + 1;
// find number of bars at the end of interval
bs2 = IIf(dtt == -1,bs,Null);
// assign highest high within the interval assigned to rest of day
hgh = IIf(!tt,HHV(htt,bs2),Null);
// close price at end of interval assigned to rest of day
cls = IIf(!tt,ValueWhen(dtt == -1,C),Null);
SetChartOptions(0, chartShowDates);
Plot(C,"",1,64);
Plot(hgh,"high",colorGold,styleLine);
Plot(cls,"close",colorLightBlue,styleLine);
Thomas
www.patternexplorer.com
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
Of dralexchambers
Sent: Wednesday, March 14, 2007 6:49 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] 15min data to Daily
I have 15min data on the GBPUSD.
How do I find the midpoint (ie. H+L/2) from yesterday 14:00 to today
13:45?
Thanks - alex
------------------------ Yahoo! Groups Sponsor --------------------~-->
Transfer from your equities account.
Receive up to $1,000 from GFT. Click here to learn more.
http://us.click.yahoo.com/aZttyC/X_xQAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|