PureBytes Links
Trading Reference Links
|
I have no idea what exactly this entire line of code is saying
exactly so if anyone could explain? I am the worst at understanding
things sometimes so thanks for your patients and help!! (Does this
add 5 daily bars together? and then take the open from the first
bar? and the close from the last bar? Then the High and low from the
bar?)
Mark
TimeFrameSet(inDaily*5);
L1=L;
H1=H;
O1=O;
C1=C;
TimeFrameRestore();
PlotOHLC(O1,h1,l1,C1,"",colorBlack,styleCandle);
--- In amibroker@xxxxxxxxxxxxxxx, "mleonsprint" <mleonsprint@xxxx>
wrote:
> 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
<*> 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/
|