PureBytes Links
Trading Reference Links
|
Hi Dimitris
Thanks for your response.
The line "START=ValueWhen(Cum(IsTrue(Y))==1,Cum(1));" does not seen
to work for a vertical line (study), i.e. it is only valid between
and excluding 0 and 180 degrees.
This however is fine. I can draw the AB and BC lines on the chart
and then use your method to get the values for calculating the Fib
projections (instead of marking points A,B and C seperately with
vertical lines).
Thanks again
Conrad
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS"
<TSOKAKIS@xxxx> wrote:
> Conrad,
> Every custom indicator has an Id number in the upper right of the
> indicator text.
> Draw your trendline in a custom indicator [let 2044], name it [let
> SU] and then
> Y=Study("SU",2044);
> will be an array with all the properties of your trendline.
> Example
>
> Plot(C,"C",1,64);
> Y=Study("SU",2044);
> START=ValueWhen(Cum(IsTrue(Y))==1,Cum(1));
> END=-1+ValueWhen(IsEmpty(Y) AND Ref(IsTrue(Y),-1),Cum(1));
> LENGTH=END-START;
> Title="START="+WriteVal(START,1.0)+", END="+WriteVal(END,1.0)+",
> LENGTH="+WriteVal(LENGTH,1.0);
>
> --- In amibroker@xxxxxxxxxxxxxxx, "conrad_faber" <c.faber@xxxx>
wrote:
> > I want to manually mark a number a bars on a chart for AB to
> > calculate the Fib ABC expansions. The only way that I am aware
of
> is
> > vertical lines with the appropriate StudyId's, eg AA, BB, CC.
> >
> > This then requires me to use the "cross" function that does not
> seem
> > to work well with vertical lines.
> >
> > Is there perhaps a way that I can get the Barnumber from the
> > StudyId?
> >
> > Any ideas?
> >
> > Thanks
> > Conrad
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/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/
|