PureBytes Links
Trading Reference Links
|
Duke,
I have not had the occasion to use that, so I tried it with a text
column and found that you are right, it doesn't seem to work for the
following code:
AddTextColumn(FullName(),"Name",colorDefault,IIf(PChg>=0.0,colorBrightGreen,colorDefault));
I guess it is an enhancement request.
Regards,
Ed
Duke Jones, CMT wrote:
> Ed,
>
> This works for the Addcolumn...do you know of a way to do
> this with the Addtextcolumn? That’s where I have had
> difficulty using the IIF or colors.
>
> Thanks,
>
> Duke Jones, CMT
>
>>-----Original Message-----
>>From: E Winters [mailto:e.winters1@xxxxxxxxxxx]
>>Sent: Wednesday, March 02, 2005 9:55 PM
>>To: amibroker@xxxxxxxxxxxxxxx;
>>Duke.Jones@xxxxxxxxxxxxxxxxxxxxxx
>>Subject: Re: [amibroker] Re: Adding Text to Explore/Scan
>>Columns
>>
>>
>>Duke,
>>Try this (without the line wrap):
>>x0=<your variable - I use score in this example>
>>AddColumn(x0,"Score",1.0,colorDefault,
>>IIf(x0>=scGreen,colorBrightGreen,
>>IIf(x0>=scBlue,colorSkyblue,
>>IIf(x0>=scYellow,colorYellow,
>>IIf(x0>=scOrange,colorLightOrange,colorRed)))));
>>Regards,
>>Ed
>>
>>Duke Jones, CMT wrote:
>>
>>>If you ever find a way to make the values conditional
>>
>>please post it to
>>
>>>the list. So far I have only been able to make just the
>>
>>text colored but
>>
>>>not the background without making the whole column the
>>
>>same color.
>>
>>
>>>Duke Jones, CMT
>>
>>
>>------------------------ Yahoo! Groups Sponsor -----------
>>---------~-->
>>In low income neighborhoods, 84% do not own computers.
>>At Network for Good, help bridge the Digital Divide!
>>http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
>>----------------------------------------------------------
>>----------~->
>>
>>Check AmiBroker web page at:
>>http://www.amibroker.com/
>>
>>Check group FAQ at:
>>http://groups.yahoo.com/group/amibroker/files/groupfaq.htm
>>l
>>Yahoo! Groups Links
>>
>>
>>
>>
>>
>>
>>
>>
>>--
>>No virus found in this incoming message.
>>Checked by AVG Anti-Virus.
>>Version: 7.0.308 / Virus Database: 266.6.0 - Release Date:
>>3/2/2005
>>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|