PureBytes Links
Trading Reference Links
|
Try to add this in addition to Steve's code.. make your chart look better.. hehe
_N(Title = EncodeColor( colorDarkRed ) + Name() + EncodeColor( colorBlack ) + " - " + EncodeColor( colorGrey50 ) + Interval(2) + " " + EncodeColor( colorDarkGrey ) + Date ( )
+"AA R2e2to2e98"
+ EncodeColor( colorWhite ) + " SmoothTrend " + EncodeColor( colorBlack ) +
WriteVal( SmoothTrend )
+ EncodeColor( colorCustom12 ) + " AtualTrend " + EncodeColor( colorBlack ) +
WriteVal( ActualTrend )
+ EncodeColor( colorCustom9 ) + " R5e5 " + EncodeColor( colorBlack ) +
WriteVal( R5e5 )
+ EncodeColor( colorBlue ) + " R14 " + EncodeColor( colorBlack ) +
WriteVal( R14 )
+ EncodeColor( colorRed ) + " S14 " + EncodeColor( colorBlack ) +
WriteVal( S14 )
);
Wilson
On 6/6/05, Steve Dugas <sjdugas@xxxxxxxxxxx> wrote:
Hi Ron - is this what you were looking for?
Title = "AA R2e2to2e98"
+ EncodeColor( colorWhite
) +
" SmoothTrend " + EncodeColor( colorBlack ) +
WriteVal( SmoothTrend )
+ EncodeColor( colorCustom12
) +
" AtualTrend " + EncodeColor( colorBlack ) +
WriteVal( ActualTrend )
+ EncodeColor( colorCustom9
) +
" R5e5 " + EncodeColor( colorBlack ) +
WriteVal( R5e5 )
+ EncodeColor( colorBlue
) +
" R14 " + EncodeColor( colorBlack ) +
WriteVal( R14 )
+ EncodeColor( colorRed
) +
" S14 " + EncodeColor( colorBlack ) +
WriteVal( S14 );
----- Original Message -----
Sent: Sunday, June 05, 2005 3:25 AM
Subject: Re: [amibroker] Chart Title Question
I just plugged my own items into Wilsons example, and it works. However, I would also like to display the names that I have chosen to call each of these values.
Apparently, I need to have something like this>EncodeColor(colorWhite)+WriteText(Smooth
Trend)+WriteVal(SmoothTrend)+EncodeColor(colorCustom12)+WriteText(ActualTrend)+
WriteVal(ActualTrend)+AND SO ON.
I would appreciate seeing an example of what I need to add to my title statement to accomplish this. Ron D
Title ="AA R2e2to2e98"+EncodeColor(colorWhite)+
WriteVal(SmoothTrend)+EncodeColor(colorCustom12)+WriteVal(ActualTrend)
+
EncodeColor (colorCustom9)+WriteVal(R5e5)+
EncodeColor(colorBlack)
+WriteVal(R14)+EncodeColor(colorRed)+
WriteVal(S14);
----- Original Message -----
Sent: Wednesday, June 01, 2005 1:00 PM
Subject: Re: [amibroker] Chart Title Question
Try this..
Title = EncodeColor(colorWhite) + "Open $ "
+ EncodeColor(colorBlack) + WriteVal(Open/1,1.2) + EncodeColor(colorBlue) + " High $ "
+ EncodeColor(colorRed) + WriteVal(High/1,1.2)
+ EncodeColor(color"etc etc") + etc, etc;
Wilson
On 6/2/05, Dean Hodgins <deanhodgins@xxxxxxxxx
> wrote:
Just curious whether it's possible to assign specific colors to parts of a title block as opposed to all items colored white per the
example below.
Title = EncodeColor(colorWhite)+ "Open $ " + WriteVal(Open/1,1.2) + " High $ " + WriteVal(High/1,1.2) + etc, etc.
I tried adding another Title line but then the original title was
gone when applied.
Purely a cosmetic issue that would help highlight parts of a lenghty and multi-line title I have set up.
Thanks and Regards,
Dean Hodgins
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
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
No virus found in this incoming message. Checked by AVG Anti-Virus. Version: 7.0.322 / Virus Database: 267.3.3 - Release Date: 5/31/2005
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
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
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
|