這是一款具備「可自由調整在 K 棒收盤前 0 秒至 5 分鐘內,何時開始實時(Real-time)繪圖」功能的 MACD。此外也整合了其他多項實用的輔助功能。
[MACD]
MACD(平滑異同移動平均線)藉由計算兩條不同期間 EMA 之間的「乖離幅度(差值)」,是一款能將趨勢方向與動能(力道)同時視覺化的指標。它能在單一視窗中,同時呈現以零軸為基準的「趨勢方向(正值或負值)」,以及透過快慢線交叉與柱狀圖增減所反映出的「趨勢動能變化」。
來源: TradingView
[NOTICE & LICENSE]
・僅供學習與提供資訊之用,不構成投資建議。對於因使用本工具而產生之任何經濟損失,概不負責。
・已於 Pine Script v6 測試運作。以「現狀 (As-is)」提供,不保證因未來 TradingView 系統規格變更而進行更新,亦不接受個別的安裝支援或修改請求。
・適用 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 MACD", shorttitle="NK-Fixed MACD", overlay=false)
// ==============================================================================
// 【01】 免責・ライセンス
// ==============================================================================
//
// 本指標免費公開: https://www.nk-report.com/p/tw-tradingview.html
//
// 免責聲明:本腳本僅供學習與資訊參考之用,不構成任何投資建議。
//
// 1. 本程式碼截至 2026 年,已在 Pine Script v6 環境下完成運作測試。
// 日後若因規格變動而導致任何異常,恕不提供個別的技術支援或修改服務。
// 2. 本腳本係基於一般的計算邏輯,並透過 LLM 獨立編寫而成。
// 本程式碼採用 MIT 授權條款 (MIT License) 進行發布。
// ------------------------------------------------------------------------------
// 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 = "即時繪圖開始 (K棒收盤前X秒)"
const string TT_SEC = "可在0秒至300秒(5分鐘)之間調整。在達到指定時間(例如:收盤前10秒)之前,將隱藏當前K棒的繪圖。\n若輸入0秒,則停用隱藏功能,並始終即時繪圖。"
const string GRP_MACD = "▼ MACD設定"
const string LBL_FAST = "快線長度"
const string LBL_SLOW = "慢線長度"
const string LBL_SIG = "訊號線長度"
const string LBL_SRC = "來源"
// 2. UI(ユーザー入力画面)の構築 & 3. トップダウン処理への適合
i_sec = input.int(0, title=LBL_SEC, minval=0, maxval=300, group=GRP_FIXED, tooltip=TT_SEC)
i_fast = input.int(12, title=LBL_FAST, minval=1, group=GRP_MACD, inline="MACD1")
i_slow = input.int(26, title=LBL_SLOW, minval=1, group=GRP_MACD, inline="MACD1")
i_sig = input.int(9, title=LBL_SIG, minval=1, group=GRP_MACD, inline="MACD2")
i_src = input.source(close, title=LBL_SRC, group=GRP_MACD, inline="MACD2")
i_col_macd = input.color(#2962FF, title="MACD Line", group=GRP_MACD, inline="MACD3")
i_col_sig = input.color(#FF6D00, title="Signal Line", group=GRP_MACD, inline="MACD3")
i_col_h_up = input.color(#26A69A, title="Hist Up", group=GRP_MACD, inline="MACD4")
i_col_h_dn = input.color(#EF5350, title="Hist Down", group=GRP_MACD, inline="MACD4")
// ==============================================================================
// 【03】 全コード共通仕様(タイムゾーン・時間インフラ処理)
// ==============================================================================
// 1. 基本時間単位のシステム定義(定数化)
const int MS_PER_SEC = 1000
// ==============================================================================
// 【04】 各カテゴリ共通仕様 (NK-Fixed Core Logic)
// ==============================================================================
// 1. カテゴリ固有のインフラ構築(コア機能の定義)
bool is_draw_ready = true
// リアルタイム足であり、かつユーザーが0秒より大きい数値を設定している場合のみ処理
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. インジケーター固有の純粋な数学的処理
[macdLine, signalLine, histLine] = ta.macd(i_src, i_fast, i_slow, i_sig)
// 2. ロジックの完全な隔離と差し替えの容易性
// 3. 視覚的装飾の排除とデータの引き渡し
float final_macd = is_draw_ready ? macdLine : na
float final_sig = is_draw_ready ? signalLine : na
float final_hist = is_draw_ready ? histLine : na
// ==============================================================================
// 【06】 描画と出力 (Rendering & Outputs)
// ==============================================================================
// 1. チャートへの視覚的出力(プロットと装飾)
// ヒストグラムの増減に応じた色分け(透明度で強弱を表現)
color hist_color = final_hist >= 0 ? (final_hist > final_hist[1] ? i_col_h_up : color.new(i_col_h_up, 50)) : (final_hist < final_hist[1] ? i_col_h_dn : color.new(i_col_h_dn, 50))
plot(final_hist, title="Histogram", style=plot.style_columns, color=hist_color)
plot(final_macd, title="MACD Line", color=i_col_macd, linewidth=2)
plot(final_sig, title="Signal Line", color=i_col_sig, linewidth=2)
hline(0, title="Zero Line", color=color.new(color.gray, 50), linestyle=hline.style_dashed)
// 2. ロジックとデザインの完全分離
// 3. アラート(通知)条件の統合
// ※投資助言を回避するため、方向性を指示する言葉(Buy/Sell等)は使わず、純粋な事実・状態のみを通知します
bool cross_over_sig = ta.crossover(macdLine, signalLine) and is_draw_ready
bool cross_under_sig = ta.crossunder(macdLine, signalLine) and is_draw_ready
bool cross_over_zero = ta.crossover(macdLine, 0) and is_draw_ready
bool cross_under_zero= ta.crossunder(macdLine, 0) and is_draw_ready
alertcondition(cross_over_sig, title="MACD Cross Over Signal", message="MACD line crossed over Signal line")
alertcondition(cross_under_sig, title="MACD Cross Under Signal", message="MACD line crossed under Signal line")
alertcondition(cross_over_zero, title="MACD Cross Over Zero", message="MACD line crossed over Zero line")
alertcondition(cross_under_zero,title="MACD Cross Under Zero", message="MACD line crossed under Zero line")
* 設定好喜歡的顏色配置後,請在設定分頁中點擊「儲存為預設值」。
* 若未按照「新增 → 指標 → 貼上」的順序操作,可能無法正確顯示。