PureBytes Links
Trading Reference Links
|
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;
|