PureBytes Links
Trading Reference Links
|
Hello,
1. As of now you can not use 3 * inDaily interval.
The only intervals longer than daily supported as of now
are: inWeekly and inMonthly.
2. For display you have to use TimeFrameExpand function as explained
in the user's guide:
http://www.amibroker.com/guide/h_timeframe.html
wo = TimeFrameGetPrice( "O", inWeekly, 0, expandPoint );
wh = TimeFrameGetPrice( "H", inWeekly, 0, expandPoint );
wl = TimeFrameGetPrice( "L", inWeekly, 0, expandPoint );
wc = TimeFrameGetPrice( "C", inWeekly, 0, expandPoint );
PlotOHLC( wo, wh, wl, wc, "Weekly Close", colorWhite, styleCandle );
Plot( Close, "Daily Close", colorBlue );
or (using TimeFrameSet/Restore):
TimeFrameSet(inDaily*5);
L1=L;
H1=H;
O1=O;
C1=C;
Title = Name() + " (" + StrLeft(FullName(), 15) + ")
Open " + Open + ", High " + High + ", Low " + Low + ",
Close " + Close;
TimeFrameRestore();
O1 = TimeFrameExpand( O1, inWeekly, expandPoint ); // IMPORTANT !!!!
H1 = TimeFrameExpand( H1, inWeekly, expandPoint );
L1 = TimeFrameExpand( L1, inWeekly, expandPoint );
C1 = TimeFrameExpand( C1, inWeekly, expandPoint );
PlotOHLC(O1,h1,l1,C1,"",colorBlack,styleCandle);
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "mleonsprint" <mleonsprint@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, February 13, 2004 5:10 AM
Subject: [amibroker] 5 Daily bars compressed into one.........
> I am now more confused than ever.. I guess maybe I am not
> understanding the Time Frame functions real well. So am I wrong by
> the first statement in trying to get the open of 5 days ago for my 5
> day bar?
>
> o1=ref(o,-5);
>
>
> Then getting the current close for the current 5 day bar
>
> c1=c;
>
> Here is where I think I am getting confused.... Ok getting the high
> and low within the last 5 daily bars...
>
> Timeframeset(indaily*5);
> l1=l;
> h1=h;
> Timeframerestore():
>
> I am not sure if by indaily*5 that combines 5 daily bars together?
> Then in the next line by asking for the Low or High it gives the low
> or High of one of those bars?
>
> plotohlc(o1,h1,L1,c,"5 Bars",colorblack,stylecandle);
>
> However when I try it... Well Kaboom@#$%^ it does not look right
>
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Send the freshest Valentine's flowers with a FREE vase from only $29.99!
Shipped direct from the grower with a 7 day freshness guarantee and prices so low you save 30-55% off retail!
http://us.click.yahoo.com/_iAw9B/xdlHAA/3jkFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|