PureBytes Links
Trading Reference Links
|
It is quite useful when we donīt know in advance how many lines will
be plotted.
Example
for(k=10;k<200;k=k+10)
{
if(LastValue(StochD(k))>50)
Plot(StochD(k),"\nStochD("+WriteVal(k,1.0)+")",k/10,1);
}
You may also have groups of 3 or 4 results per line.
d=0;
for(k=10;k<200;k=k+10)
{
if(LastValue(StochD(k))>50)
{
Plot(StochD(k),WriteIf(d%4==0,"\n","")+"StochD("+WriteVal(k,1.0)
+")",k/10,1);
d=d+1;
}
}
It will write maximum 4 results per line .
Dimitris Tsokakis
}
--- In amibroker@xxxxxxxxxxxxxxx, "Prashanth" <prash454@xxxx> wrote:
> Thank You very much. Got what I wanted.
>
> Regards
> Prashanth
> ----- Original Message -----
> From: DIMITRIS TSOKAKIS
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Tuesday, May 04, 2004 12:43 PM
> Subject: [amibroker] Re: Lining up text on charts
>
>
> Use +"\n"+ to change the line.
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Prashanth" <prash454@xxxx>
wrote:
> > Hi,
> >
> > Is there any way to wrap the Title. My Title has a large number
of
> values to display and runs out of space.
> >
> > Thanks in Advance
> >
> > Regards
> > Prashanth
> > ----- Original Message -----
> > From: Herman van den Bergen
> > To: amibroker@xxxxxxxxxxxxxxx
> > Sent: Tuesday, May 04, 2004 3:57 AM
> > Subject: RE: [amibroker] Lining up text on charts
> >
> >
> > Thanks, now i have two choices :-) Lucida is a bit more
compact
> with lesser line spacing.
> >
> > h
> > -----Original Message-----
> > From: WALEDINGO [mailto:dingo@x...]
> > Sent: Monday, May 03, 2004 5:55 PM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: RE: [amibroker] Lining up text on charts
> > Importance: High
> >
> >
> > So is Courrier New.
> >
> > d
> >
> >
> >
> > ----------------------------------------------------------------
----
> ------
> > From: Herman van den Bergen [mailto:psytek@x...]
> > Sent: Monday, May 03, 2004 5:20 PM
> > To: AmiBroker YahooGroups
> > Subject: [amibroker] Lining up text on charts
> >
> >
> > fwiw,
> >
> > When you have trouble lining up text in your afl editor
or on
> charts you may want to try and use Lucida Console, 10 pt, its
> characters are equally spaced.
> >
> > herman
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > 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
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > 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
> >
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > 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 Sponsor
> > ADVERTISEMENT
> >
> >
> >
> >
> >
> > ----------------------------------------------------------------
----
> ----------
> > Yahoo! Groups Links
> >
> > a.. To visit your group on the web, go to:
> > http://groups.yahoo.com/group/amibroker/
> >
> > b.. To unsubscribe from this group, send an email to:
> > amibroker-unsubscribe@xxxxxxxxxxxxxxx
> >
> > c.. Your use of Yahoo! Groups is subject to the Yahoo!
Terms of
> Service.
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 Sponsor
> ADVERTISEMENT
>
>
>
>
>
> --------------------------------------------------------------------
----------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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/
|