| 
 PureBytes Links 
Trading Reference Links 
 | 
Ara,
Thanks, first what do you mean by 'selected'?  The indicator is a Donchian
channel and shows up ok on one of the panes.
As a commentary by itself coded in the Commentary window, it works fine; but
I want it to be indicator dependent, so that I can have other indicators
with their particular interpretation/commentaries
The last part of the code plus the interpretation:
Buy=H>DUpper;
PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorBrightGreen,0,Graph0,-15);
Sell=L<LLV(Ref(L,-1),Spds); /* Exit for Longs if no stop-Loss Hit */
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0,Graph1,-15);
//--Indicator-End-- 
"For an account of 10,000 Nis, 1 unit to buy is:"
WriteVal((10000/100)/2*ATR(14));
Herbert
p.s. I don't know how to increase this text  8<)
----- Original Message ----- 
From: "Ara Kaloustian" <ara1@xxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, January 05, 2004 8:15 PM
Subject: Re: [amibroker] Commentary pain
> Herbert,
>
> Some basics first ... just in case...
>
> The indicator has to be selected in order for the commentary to show up in
> the int window.
>
> Beyond that it would be useful to post your code ... or a sample of it so
> poeple can see what the problem may be
>
> ----- Original Message ----- 
> From: "hertyil" <herty@xxxxxxxxxxxxxxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Monday, January 05, 2004 9:46 AM
> Subject: [amibroker] Commentary pain
>
>
> > I wrote a commentary after an indicator as per the Indicator Builder
> > instructions. The indicator is applied in my pane #8. Now how or
> > when should it appear in the Interpretation window. Also does it
> > have to be saved if at all; the whole indicator plus commentary is
> > saved as an .afl file.
> >
> > I'll appreciate someone's bother. TJ already helped me with the
> > first part.
> >
> > Herbert
> >
> >
> > 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/
> >
> >
>
>
>
> 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/
>
>
>
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/ 
 
 |