That's got to be one of the most horrific workarounds to drawing a 
thick line in an advanced charting package that I've ever seen.

A developer of Tomasz's expertise should be embarrassed that it's 
come down to this.


--- In amibroker@yahoogroups.com, "gmorlosky" <[EMAIL PROTECTED]> wrote:
>
> That works....nice.....
> 
> --- In amibroker@yahoogroups.com, "Arnie" <alexz@> wrote:
> >
> > This should work 
> > 
> > _SECTION_BEGIN("Line Thickness");
> > //http://www.purebytes.com/archives/amibroker/2006/msg08738.html
> > 
> > Thick = Param("Thick", 0.02, 0.01, 0.2, 0.01);
> > P = ParamField("Price field",-1);
> > Periods = Param("Periods", 15, 2, 200, 1, 10 );
> > SMA= MA( P, Periods );
> > 
> > function wPlot( Pr, Txt, Co, St )
> >   {
> >   PlotOHLC(Pr,Pr,Pr+Thick,Pr+Thick,"",Co,styleCloud);
> >   }
> > 
> >   wPlot(SMA,"",ParamColor("Line", colorRed),2);
> > _SECTION_END();
> > 
> > 
> > --- In amibroker@yahoogroups.com, "gmorlosky" <gmorlosky@> wrote:
> > >
> > > Thanks, but I'm not using bars but Close only (Mutual Funds), 
so 
> > > stylecloud doesn't thicken.
> > >
> >
>


Reply via email to