Thanks, that worked really great! RichardF.
--- In [email protected], "Anthony Faragasso" <[EMAIL PROTECTED]> wrote: > > nextday = WriteIf(nextdaytotal < 3, "up", WriteIf(nextdaytotal > 3 AND > > nextdaytotal < 5, "down","flat")); > > Title = Name ( ) + ", " + Date ( ) + " - " + "\n " + "Next_Day = " + nextday; > > ----- Original Message ----- > From: rlfoxworth2006 > To: [email protected] > Sent: Friday, September 22, 2006 5:37 PM > Subject: [amibroker] Need text line code help. > > > I need to change number values to text values and show the text in > the title line. > > Thanks... Richardf > > //Current Code > > nextday = IIf(nextdaytotal < 3, 1, IIf(nextdaytotal > 3 AND > nextdaytotal < 5, 2,3)); > Title = Name ( ) + ", " + Date ( ) + " - " + Title + "\n " + "Next > Day = " + WriteVal(nextday,1.2); > //********************************************************* > > //Need to change to: > > //I need to change the numbers above to text and place the text > results in the title line below replacing > WriteVal(nextday,1.2) to a text result displaying the results from > nextday as (up,down,flat) ... > > nextday = IIf(nextdaytotal < 3, up, IIf(nextdaytotal > 3 AND > nextdaytotal < 5, down,flat)); > Title = Name ( ) + ", " + Date ( ) + " - " + Title + "\n " + "Next > Day = " + WriteVal(nextday,1.2); > > > > > > > -------------------------------------------------------------------- -------- > > avast! Antivirus: Inbound message clean. > > Virus Database (VPS): 0638-1, 09/22/2006 > Tested on: 9/22/2006 8:13:08 PM > avast! - copyright (c) 1988-2006 ALWIL Software. > Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to SUPPORT {at} amibroker.com For other support material please check also: http://www.amibroker.com/support.html Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/amibroker/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/amibroker/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
