I'm not sure what you are referring to. But, wouldn't plots using Ref do the job?
Plot(Ref(Close, -1), ...);
Plot(Ref(Close, -2), ...);
...
Or, putting it in a loop
for (i = 1; i <= 5; i++) {
Plot(Ref(Close, -i), ...);
}
Mike
--- In [email protected], "intelsoundvision" <zeppieri.ser...@...>
wrote:
>
> Hi - can someone help/suggest how to have a 5-day price overlay - similar to
> the gold spot price on kitco site here:
> http://www.kitco.com/charts/livegold.html - any help appreciated - tia
>
