「足が閉じる何秒前にリアルタイム描画を開始するか、0秒から5分の間で調節できる」機能が付いたRSIです。その他あった方が良い機能も付けています。
[RSI]
RSIは、指定された期間内における「上昇幅の平均」と「下落幅の平均」のバランスを計算し、現在の相場の相対的な強気・弱気の度合いを0から100のパーセンテージで数値化したものです。価格の絶対値ではなく、「変動のスピードと偏り(モメンタム)」を計測します。
出典: TradingView
[NOTICE & LICENSE]
・学習および情報提供のみを目的としており、投資助言ではありません。ツールを使用したことによる経済的損失について、一切の責任を負いません。
・Pine Script v6 で動作確認しています。将来のTradingView側の仕様変更に対するアップデート保証や、個別の導入サポート・改修依頼は一切受け付けません(現状有姿での提供)。
・MIT Licenseに則っています。
// SPDX-FileCopyrightText: 2026 NK-report https://www.nk-report.com/
// SPDX-License-Identifier: MIT
//
// Disclaimer: This script is for educational purposes only and does not constitute investment advice.
//@version=6
indicator("NK-Fixed RSI", shorttitle="NK-Fixed RSI", overlay=false)
// ==============================================================================
// 【01】 免責・ライセンス
// ==============================================================================
//
// インジケーターを無料で公開しています: https://www.nk-report.com/p/jp-0_0810719344.html
//
// 免責事項: 本スクリプトは学習および情報提供のみを目的としており、投資助言ではありません。
//
// 1. 本コードは2026年時点の Pine Script v6 で動作確認を行っています。
// 将来の仕様変更に伴う不具合等について、個別のサポートや改修は行いません。
// 2. 本スクリプトは一般的な計算ロジックに基づき、LLMを用いて独自に作成したものです。
// MITライセンスに則っています。
// ------------------------------------------------------------------------------
// MIT License
//
// Copyright 2026 NK-report https://www.nk-report.com/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
// of the Software, and to permit persons to whom the Software is furnished to do
// so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ==============================================================================
// 【02】 UI設定と言語
// ==============================================================================
// 1. 言語辞書の定義(テキストの定数化)
const string GRP_FIXED = "▼ 描画制御 (Fixed Settings)"
const string LBL_SEC = "リアルタイム描画開始 (足が閉じるX秒前)"
const string TT_SEC = "0秒から300秒(5分)の間で調節。指定時間(例:10秒前)になるまで、現在の足への描画を非表示にします。\n0秒と入力した場合は非表示機能を無効化し、常にリアルタイムで描画します。"
const string GRP_RSI = "▼ RSI設定 (RSI Settings)"
const string LBL_SH_RSI = "RSI "
const string LBL_LEN = "期間"
const string LBL_SRC = "ソース"
const string LBL_SH_MA1 = "平滑化 1 "
const string LBL_S1_TYPE = "タイプ"
const string LBL_S1_LEN = "期間"
const string LBL_SH_MA2 = "平滑化 2 "
const string LBL_S2_TYPE = "タイプ"
const string LBL_S2_LEN = "期間"
// 2. UI(ユーザー入力画面)の構築 & 3. トップダウン処理への適合
i_sec = input.int(0, title=LBL_SEC, minval=0, maxval=300, group=GRP_FIXED, tooltip=TT_SEC)
// RSI設定
i_show_rsi = input.bool(true, title=LBL_SH_RSI, group=GRP_RSI, inline="RSI0")
i_len = input.int(14, title=LBL_LEN, minval=1, group=GRP_RSI, inline="RSI0")
i_src = input.source(close, title=LBL_SRC, group=GRP_RSI, inline="RSI0")
// 平滑化1の設定
i_show_ma1 = input.bool(false, title=LBL_SH_MA1, group=GRP_RSI, inline="RSI1")
i_ma1_type = input.string("SMA", title=LBL_S1_TYPE, options=["SMA", "EMA", "WMA"], group=GRP_RSI, inline="RSI1")
i_ma1_len = input.int(20, title=LBL_S1_LEN, minval=1, group=GRP_RSI, inline="RSI1")
// 平滑化2の設定
i_show_ma2 = input.bool(false, title=LBL_SH_MA2, group=GRP_RSI, inline="RSI2")
i_ma2_type = input.string("SMA", title=LBL_S2_TYPE, options=["SMA", "EMA", "WMA"], group=GRP_RSI, inline="RSI2")
i_ma2_len = input.int(50, title=LBL_S2_LEN, minval=1, group=GRP_RSI, inline="RSI2")
// ==============================================================================
// 【03】 全コード共通仕様(タイムゾーン・時間インフラ処理)
// ==============================================================================
const int MS_PER_SEC = 1000
// ==============================================================================
// 【04】 各カテゴリ共通仕様 (NK-Fixed Core Logic)
// ==============================================================================
bool is_draw_ready = true
if barstate.isrealtime and i_sec > 0
if not na(time_close)
int time_left_ms = time_close - timenow
int threshold_ms = i_sec * MS_PER_SEC
if time_left_ms > threshold_ms
is_draw_ready := false
// ==============================================================================
// 【05】 このコード固有の計算仕様 (Specific Indicator Logic)
// ==============================================================================
// 1. 純正RSIの計算
float raw_rsi = ta.rsi(i_src, i_len)
// 2. 平滑化処理の共通関数
f_calc_smooth(type_str, src_val, len_val) =>
float res = na
switch type_str
"SMA" => res := ta.sma(src_val, len_val)
"EMA" => res := ta.ema(src_val, len_val)
"WMA" => res := ta.wma(src_val, len_val)
res
// 平滑化ラインの計算
float raw_ma1 = f_calc_smooth(i_ma1_type, raw_rsi, i_ma1_len)
float raw_ma2 = f_calc_smooth(i_ma2_type, raw_rsi, i_ma2_len)
// 3. データ引き渡し
float final_rsi = (is_draw_ready and i_show_rsi) ? raw_rsi : na
float final_ma1 = (is_draw_ready and i_show_ma1) ? raw_ma1 : na
float final_ma2 = (is_draw_ready and i_show_ma2) ? raw_ma2 : na
// ==============================================================================
// 【06】 描画と出力 (Rendering & Outputs)
// ==============================================================================
// カラー定義(座標指定から抽出したHEXコード)
color col_rsi = #7E57C2 // 右から3、下から3
color col_lvl_70 = #787B86 // 右から5、上から1
color col_lvl_50 = color.black // 右から1、上から1
color col_lvl_30 = #787B86 // 右から5、上から1
// メインラインの描画
plot(final_rsi, title="NK-Fixed RSI", color=col_rsi, linewidth=1, style=plot.style_line)
plot(final_ma1, title="平滑化 1", color=color.green, linewidth=1, style=plot.style_line)
plot(final_ma2, title="平滑化 2", color=color.blue, linewidth=1, style=plot.style_line)
// 標準的な水平線の描画 (70, 50, 30)
h70 = hline(70, title="水平線 1", color=col_lvl_70, linestyle=hline.style_dashed)
h50 = hline(50, title="水平線 2", color=col_lvl_50, linestyle=hline.style_dashed)
h30 = hline(30, title="水平線 3", color=col_lvl_30, linestyle=hline.style_dashed)
// 背景の塗りつぶし (不透明度10% = Pine Scriptの透明度90)
fill(h70, h30, title="背景", color=color.new(col_rsi, 90))
// ユーザー追加ライン (Extra Line) - デフォルトは非表示(スタイルタブで設定可能)
hline(50, title="水平線 4", color=color.black, linestyle=hline.style_solid, display=display.none)
hline(50, title="水平線 5", color=color.black, linestyle=hline.style_solid, display=display.none)
// 3. アラート(通知)条件の統合
bool overbought = ta.crossover(raw_rsi, 70) and is_draw_ready
bool oversold = ta.crossunder(raw_rsi, 30) and is_draw_ready
alertcondition(overbought, title="RSI Over 70", message="NK-Fixed RSI crossed over 70")
alertcondition(oversold, title="RSI Under 30", message="NK-Fixed RSI crossed under 30")
※好みの配色に設定後、パラメータータブの「デフォルトを保存」を押してください。
※新規作成→インジケーター→ペーストする の順序で行わないと正しく表示されないことがあります。