PureBytes Links
Trading Reference Links
|
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
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/
|