[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Auto Channels/Triangles/Wedges



PureBytes Links

Trading Reference Links

Thanks for the feedback.

However, if the lines are still there, the charts will still not
look nice for some tickers because the lines extend to the very
beginning of the data.

We need a way to start the line 90 days past today, that is only
part of the line. Some the array should become empty prior to
the 90 days. 

thanks again

nand


--- In amibroker@xxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx> wrote:
> Nand,
> You can limit the lines to the last 90 days.
> Instead of 
> graph2color = 5;
> you may write
> graph2barcolor=iif(cum(1)>lastvalue(cum(1))-90,5,0);
> The lines will be there, but they are not visible.
> The last 0 is if your ground color id grey.
> I use blue and I must write
> graph2barcolor=iif(cum(1)>lastvalue(cum(1))-90,5,3);
> 
> Dimitris Tsokakis
> --- In amibroker@xxxx, nkishor@xxxx wrote:
> 
> > If you know how to limit the lines, say for the last 3 months, 
then
> > the charts will look even better.
> > 
> > Nand
> > --------------------------------------------------------
> > graph2color = 5;