I have SPX-IDX ticker on the chart and I need to have two Panes below the chart with the 20 day standard deviations of those vix-idx and vvix tickers. I try but they change in unison and I am not able to make them independent and with vix-idx and vvix fixed to the pane.
Can you tell me where I am failing?
Cheers
Close=PlotForeign( "VIX", " vix" , colorBlack, styleLine|styleOwnScale,0,0,0,0,2) ;
SD20dias=stdev( Close, 20 );
Plot(SD20dias, "SD20dias", colorBlack, styleLine,0,0,0,0,2);
Plot(0.86,"",colorRed, styleLine );
Close=PlotForeign( "VIX-IDX", " vix" , colorBlack, styleLine|styleOwnScale,0,0,0,0,2) ;
SD20dias=stdev( Close, 20 );
Plot(SD20dias, "SD20dias", colorBlack, styleLine,0,0,0,0,2);
Plot(1.2,"",colorRed, styleLine );