'스터디에 아웃풋 시리즈가 너무 많습니다'는 메시지가 뜹니다

(Korean)

이 에러는 차트위에 밸류를 플롯하는 아웃풋 시리즈가 맥시멈을 넘었다는 뜻입니다. 

플롯 시리즈를 콜하는 펑크션이 많이 있습니다 - plot 으로 시작하는 펑크션들: plot, plotcandle, plotbar, etc.

유의사항: 

  • plotbar 와 plotcandle 펑크션은 사실 한꺼번에 4 시리즈 (OHLC) 를 플롯합니다;
  • 모든 플롯 펑크션에서 serial (not constant) color 는 an additional output series 로 여겨집니다.

이 에러를 피하려면 플롯 펑크션 갯수를 줄이십시오.

(English) I see 'The study has too many output series' error

This error means that you have exceeded the maximum number of output series. These are the series whose values are plotted on the chart. There are several functions you can call to plot series - their names begin withplot: plot, plotcandle, plotbar, etc.

Please note:

  • plotbar and plotcandle functions actually plot 4 series (OHLC) at once;
  • serial (not constant) color in all plot functions is considered an additional output series.

To avoid this error reduce the number of plot functions.