이것은 「캔들 마감 몇 초 전에 실시간 드로잉(그리기)을 시작할지 0초에서 5분 사이에서 조절할 수 있는」 기능이 탑재된 CCI입니다. 그 외에도 있으면 유용한 보조 기능들을 함께 추가했습니다.
[CCI]
CCI는 현재 가격이 '과거 일정 기간의 평균 가격'으로부터 통계적으로 어느 정도 괴리(이탈)되어 있는지를 산출하는 무제한(상하한선이 없는) 오실레이터입니다. 그 계산식에는 0.015라는 상수가 포함되어 있는데, 이는 개발자가 "CCI 수치의 70%~80%가 -100에서 +100 사이에 수렴하도록" 의도적으로 설정한 통계적 기준입니다. 반대로 말하면, CCI가 +100을 초과하거나 -100을 하회한 상태는 "통계적 범위를 벗어난(정상을 벗어난) 강력한 트렌드(이상치)가 발생하고 있다"는 것을 의미합니다.
출처: TradingView
[NOTICE & LICENSE]
・학습 및 정보 제공만을 목적으로 하며, 투자 조언이 아닙니다. 툴 사용으로 인해 발생한 경제적 손실에 대해 일절 책임을 지지 않습니다.
・Pine Script v6에서 동작을 확인했습니다. 향후 TradingView의 사양 변경에 따른 업데이트를 보장하지 않으며, 개별적인 설치 지원이나 수정 요청은 일절 받지 않습니다 (있는 그대로(As-is) 제공).
・MIT 라이선스가 적용됩니다.
// 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 CCI", shorttitle="NK-Fixed CCI", overlay=false)
// ==============================================================================
// 【01】 免責・ライセンス
// ==============================================================================
//
// 지표를 무료로 공개하고 있습니다: https://www.nk-report.com/p/kr-tradingview.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 = "▼ 그리기 제어"
const string LBL_SEC = "실시간 그리기 시작 (캔들 마감 X초 전)"
const string TT_SEC = "0초에서 300초(5분) 사이로 조절. 지정 시간(예: 10초 전)이 될 때까지 현재 캔들의 그리기를 숨깁니다.\n0초를 입력하면 숨김 기능을 비활성화하고 항상 실시간으로 그립니다."
const string GRP_CCI = "▼ CCI 설정"
const string LBL_SH_CCI = "CCI "
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)
// CCI設定 (hlc3と期間20をデフォルトに設定)
i_show_cci = input.bool(true, title=LBL_SH_CCI, group=GRP_CCI, inline="CCI0")
i_len = input.int(20, title=LBL_LEN, minval=1, group=GRP_CCI, inline="CCI0")
i_src = input.source(hlc3, title=LBL_SRC, group=GRP_CCI, inline="CCI0")
// 平滑化1の設定
i_show_ma1 = input.bool(false, title=LBL_SH_MA1, group=GRP_CCI, inline="CCI1")
i_ma1_type = input.string("SMA", title=LBL_S1_TYPE, options=["SMA", "EMA", "WMA"], group=GRP_CCI, inline="CCI1")
i_ma1_len = input.int(20, title=LBL_S1_LEN, minval=1, group=GRP_CCI, inline="CCI1")
// 平滑化2の設定
i_show_ma2 = input.bool(false, title=LBL_SH_MA2, group=GRP_CCI, inline="CCI2")
i_ma2_type = input.string("SMA", title=LBL_S2_TYPE, options=["SMA", "EMA", "WMA"], group=GRP_CCI, inline="CCI2")
i_ma2_len = input.int(50, title=LBL_S2_LEN, minval=1, group=GRP_CCI, inline="CCI2")
// ==============================================================================
// 【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. 純正CCIの計算
float raw_cci = ta.cci(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_cci, i_ma1_len)
float raw_ma2 = f_calc_smooth(i_ma2_type, raw_cci, i_ma2_len)
// 3. データ引き渡し
float final_cci = (is_draw_ready and i_show_cci) ? raw_cci : 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)
// ==============================================================================
// カラー定義(水色・シアンベースに変更)
color col_cci = #00BCD4 // CCIメイン:水色(シアン)
color col_lvl_100 = #787B86 // 基準線:グレー(RSI仕様踏襲)
color col_lvl_0 = color.black // ゼロ線:黒
color col_lvl_m100= #787B86 // 基準線:グレー(RSI仕様踏襲)
// メインラインの描画
plot(final_cci, title="NK-Fixed CCI", color=col_cci, 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)
// 標準的な水平線の描画 (100, 0, -100)
h100 = hline(100, title="레벨 1", color=col_lvl_100, linestyle=hline.style_dashed)
h0 = hline(0, title="레벨 2", color=col_lvl_0, linestyle=hline.style_dashed)
hm100= hline(-100, title="레벨 3", color=col_lvl_m100, linestyle=hline.style_dashed)
// 背景の塗りつぶし (水色の不透明度10%)
fill(h100, hm100, title="배경", color=color.new(col_cci, 90))
// ユーザー追加ライン (Extra Line) - デフォルトは非表示
hline(200, title="레벨 4", color=color.black, linestyle=hline.style_solid, display=display.none)
hline(-200, title="레벨 5", color=color.black, linestyle=hline.style_solid, display=display.none)
// 3. アラート(通知)条件の統合
bool overbought = ta.crossover(raw_cci, 100) and is_draw_ready
bool oversold = ta.crossunder(raw_cci, -100) and is_draw_ready
alertcondition(overbought, title="CCI Over 100", message="NK-Fixed CCI crossed over 100 level")
alertcondition(oversold, title="CCI Under -100", message="NK-Fixed CCI crossed under -100")
* 원하는 색상으로 설정한 후, 설정 탭에서 '기본값으로 저장'을 눌러주세요.
* 새로 만들기 -> 지표 -> 붙여넣기 순서로 진행하지 않으면 정상적으로 표시되지 않을 수 있습니다.