How to add weekly stochastics to daily chart

Is it possible to add a weekly stochastics(slow) chart to a daily chart?

I was trying to use showview to do this, but I can only get a histogram to appear, not the actual oscillator.

Thanks!

Hi John,

Use this in a Show View below a daily chart to show both the %K and %D (note: it uses the default 10,3,3 settings - click on the text in the editor window to change them):

Plot1=STOCH(Week(PERIODAMOUNT=1), TYPE=Slow, DEFAULT=%K); 
Plot2=STOCH(Week(PERIODAMOUNT=1), TYPE=Slow, DEFAULT=%D);

Change the Plot Style to Line - as there is only one value per week it will appear stepped on a daily chart:

Capture