見出し画像

Pine Script™ (v5) の覚書 - コラム :line/label/boxの表示数

line/label/box は上限の個数まで表示され、上限に達すると古い順に消えていきます。

これらは max_lines_count/max_labels_count/max_boxes_count 変数によって制限されていて、デフォルト値は50(最大は500)です。
もしも、label/box/line を50以上表示させたい場合、これらの値を設定することによって、上限を500まで増やすことができます。

設定はスクリプトの冒頭、indicator()あるいはstrategy()に引数として設定します。

indicatorとその引数

indicator(title, shorttitle, overlay, format, precision, scale, max_bars_back, timeframe, timeframe_gaps, explicit_plot_zorder, max_lines_count, max_labels_count, max_boxes_count, max_polylines_count) → void

strategyとその引数

strategy(title, shorttitle, overlay, format, precision, scale, pyramiding, calc_on_order_fills, calc_on_every_tick, max_bars_back, backtest_fill_limits_assumption, default_qty_type, default_qty_value, initial_capital, currency, slippage, commission_type, commission_value, process_orders_on_close, close_entries_rule, margin_long, margin_short, explicit_plot_zorder, max_lines_count, max_labels_count, max_boxes_count, risk_free_rate, use_bar_magnifier, max_polylines_count) → void
//indicator()の場合
indicator("マイスクリプト", overlay=true, max_lines_count=500, max_boxes_count=500, max_boxes_count=500)


この記事が気に入ったらサポートをしてみませんか?