20813

Multi Timeframe MACD

This will show you the MACD (no Signal Line) of the higher timeframes (up to 4h). Current Timeframe is colored blue, higher timeframes are colored from light gray to darker gray (you can change that).
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
study("Multi Timeframe MACD", shorttitle="MTF_MACD")
fast = input(12, title="Fastline", type=integer)
slow = input(26, title="Slowline", type=integer)
smoothing = input(9, title="Smoothing", type=integer)
src = input(close, title="Source", type=source)
show5m = input(true, title="show 5m", type=bool)
show15m = input(true, title="show 15m", type=bool)
show30m = input(true, title="show 30m", type=bool)
show1h = input(true, title="show 1h", type=bool)
show2h = input(true, title="show 2h", type=bool)
show4h = input(true, title="show 4h", type=bool)

fastMACurrent = ema(src, fast)
slowMACurrent = ema(src, slow)
macdCurrent = fastMACurrent - slowMACurrent

fastMA5m = security(ticker,"5",ema(src, fast))
slowMA5m = security(ticker,"5",ema(src, slow))
macd5m = sma(fastMA5m - slowMA5m,smoothing)

fastMA15m = security(ticker,"15",ema(src, fast))
slowMA15m = security(ticker,"15",ema(src, slow))
macd15m = sma(fastMA15m - slowMA15m,smoothing*2)

fastMA30m = security(ticker,"30",ema(src, fast))
slowMA30m = security(ticker,"30",ema(src, slow))
macd30m = sma(fastMA30m - slowMA30m,smoothing*4)

fastMA1h = security(ticker,"60",ema(src, fast))
slowMA1h = security(ticker,"60",ema(src, slow))
macd1h = sma(fastMA1h - slowMA1h,smoothing*6)

fastMA2h = security(ticker,"120",ema(src, fast))
slowMA2h = security(ticker,"120",ema(src, slow))
macd2h = sma(fastMA2h - slowMA2h,smoothing*12)

fastMA4h = security(ticker,"240",ema(src, fast))
slowMA4h = security(ticker,"240",ema(src, slow))
macd4h = sma(fastMA4h - slowMA4h,smoothing*24)

plot(macdCurrent, color=blue, title="fl current")


plot(show5m ? macd5m : na, color=interval < 5 and not isdaily and not isweekly and not ismonthly  ? #aaaaaa : na, title="MACD 5m")
plot(show15m ? macd15m : na, color=interval < 15 and not isdaily and not isweekly and not ismonthly  ? #999999 : na, title="MACD 15m")
plot(show30m ? macd30m : na, color=interval < 30 and not isdaily and not isweekly and not ismonthly  ? #888888 : na, title="MACD 30m")
plot(show1h ? macd1h : na, color=interval < 60 and not isdaily and not isweekly and not ismonthly  ? #777777 : na, title="MACD 1h")
plot(show2h ? macd2h : na, color=interval < 120 and not isdaily and not isweekly and not ismonthly  ? #666666 : na, title="MACD 2h")
plot(show4h ? macd4h : na, color=interval < 240 and not isdaily and not isweekly and not ismonthly ? #555555 : na, title="MACD 4h")
//plot(show1D ? macd1D : na, color=not isdaily and not isweekly and not ismonthly ? #444444 : na, title="MACD 1D")