Looks like Plot only accepts a scaler for the style argument. So, just split the charting in two:
trix9 = Trix(9); Plot(IIF(trix9 > 0, trix9, null), "Trix", colorGreen, styleThick); Plot(IIF(trix9 <= 0, trix9, null), "Trix", colorRed, styleDashed); Mike --- In [email protected], "Marty J" <prog...@...> wrote: > > I would like to plot a dashed line and solid line on the same variable. > > For example if Trix(9) > 0 then styleThick > and if Trix(9) < 0 then StyleDashed > > > Thanks >
