PureBytes Links
Trading Reference Links
|
Herman,
This is another great example of a feature/function I was not aware of and will come in handy. Besides the growth and advancement Tomasz has made in the program, you and others and the helpful support of this boad are one of the major reasons I decided to make a major transition to a new platform. For those of us who have to generate research these little things are huge time savers.
Thanks,
Duke Jones, CMT
-------Original Message-------
> From: "Herman van den Bergen" <psytek@xxxxxxxx>
> Subject: RE: [amibroker] Re: Adding Text to Explore/Scan Columns
> Sent: 04 Mar 2005 12:41:29
>
> For explorations do not forget that there is a formatChar that can be used to show single characters in columns, often this is sufficint to indicate state like Up Down Buy Sell with the characters U, D, B amd S.
>
> AddColumn(IIf(Buy,83,66),"Action",formatChar);
>
> best regards,
> herman
>
> -----Original Message-----
> FROM: kris45mar [mailto:kris45mar@xxxxxxxxx]
> SENT: Friday, March 04, 2005 5:53 AM
> TO: amibroker@xxxxxxxxxxxxxxx
> SUBJECT: RE: [amibroker] Re: Adding Text to Explore/Scan Columns
>
> Duke
>
> as i understand it you are wanting to have text and
> background as different colors dependent on
> conditions.
>
> Does something like this resemble what you are looking
> for ?
>
> ****************
> CloseUP = C > Ref(C,-1);
> Closedown = C < Ref(C,-1);
>
> txtclrup = IIf(Closeup,
> colorDarkGreen,IIf(Closedown,colorRed,colorBlack));
> bkclr = IIf(Closeup,
> 5,IIf(closedown,colorPink,colorWhite));
> Filter =1;
>
> AddColumn(C,"close",1.2);
> AddColumn(Ref(C,-1),"Ystrdy close",1.2);
> AddTextColumn(WriteIf(Closeup,"UP",WriteIf(Closedown,"DOWN","same")),"up/down",1.2,
> txtclrup, bkclr);
>
> *******************
>
> ChrisB
>
> ======================================================
>
> --- "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.
> >
>
> __________________________________
> Celebrate Yahoo!'s 10th Birthday!
> Yahoo! Netrospective: 100 Moments of the Web
> http://birthday.yahoo.com/netrospective/
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> YAHOO! GROUPS SPONSOR
>
> ADVERTISEMENT
>
> -------------------------
> 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 the Yahoo! Terms of Service.
>
> -------------------------
>
> Outlook.bmp
-------Original Message-------
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/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/
|