// 데이터 포맷 설정 (CSV 형식) csv_line = str.format("{0},{1},{2},{3},{4},{5}", datetime, open, high, low, close, volume)
// 라벨로 데이터 출력 (가시화) if bar_index % 10 == 0 // 10개 단위 출력 label.new(bar_index, high, text=csv_line, style=label.style_none, textcolor=color.white, size=size.small)
// Plot을 사용해 확인용 출력 (차트 시각화) plot(close, color=color.blue, linewidth=1, title="Export Close Values")