The link I pointed to shows how to handle the title. I don't know if there is a 
way to make the Y-Axis label be a different color than the Plot. If there 
isn't, that can be easily worked around by not drawing a label for the original 
plot and then using a second plot that includes a label but no line!

ColorDots = IIf(Close > Ref(Close, -1), colorGreen, IIf(Close < Ref(Close, -1), 
colorRed, colorDarkGrey));
Plot(Close, "Price", ColorDots, styleDots | styleNoLine | styleNoLabel);
Plot(Close, "", colorPink, styleLine | styleNoLine);
Title = "Title Close is shown in pink: " + EncodeColor(colorPink) + Close;


Mike

--- In [email protected], "Vinay Gakkhar." <vgakk...@...> wrote:
>
> Dear Mike,
> 
> Thanks for your immediate reply.
> 
> I may not have properly described my need which I will try to do now.
> 
> I want my colordots to continue to be in either green or red color following 
> the changes in f_sar, but I want my styleTitle and styleLabel informations to 
> be in pink color.
> 
> After going through the link provided by you, I could not understand how to 
> write my statement. Reason for this perhaps is that I don't have adequate 
> knowledge of coding. Can you please help by modifying my code-statement?
> 
> Best regards,
> 
> vgakkhar
> 
> 
> 
> On Fri, 18 Jun 2010 07:30:28 +0530, Mike <sfclimb...@...> wrote:
> 
> > See Title section
> > http://www.amibroker.com/guide/h_indbuilder2.html
> >
> > Mike
> >
> > --- In [email protected], "Vinay Gakkhar." <vgakkhar@> wrote:
> >>
> >> Dear members,
> >>
> >> colordots = IIf(f_sar < L,colorGreen,IIf(f_sar > H,colorRed,colorWhite));
> >> Plot(f_sar,"\nCyCl1", colordots,styleDots|styleNoLine );
> >>
> >> I want plotting of dots in green or red color as per above statement, but 
> >> I also want that my Label & Title should be plotted in Gold color in ALL 
> >> conditions.
> >>
> >> Can you please make suitable modification in my above statement?
> >>
> >> Thank you,
> >>
> >> vgakkhar
> >>
> >
> >
>


Reply via email to