חפש
מוצרים
קהילה
שווקים
חדשות
ברוקרים
עוד
HE
התחל
קהילה
/
רעיונות
/
Rsi+macd+moving+bollinger
CFDs על זהב (US$ / OZ)
Rsi+macd+moving+bollinger
מאת thananan67
עקוב
עקוב
7 בספט׳
0
7 בספט׳
//
version
=4
study("Custom Indicator", overlay=true)
// Moving Average
ma_short = sma(close, 10)
ma_long = sma(close, 50)
plot(ma_short, color=color.blue)
plot(ma_long, color=color.red)
// RSI
rsi = rsi(close, 14)
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)
plot(rsi, color=color.purple)
// MACD
[macdLine, signalLine, _] = macd(12, 26, 9)
plot(macdLine, color=color.blue)
plot(signalLine, color=color.red)
bgcolor(macdLine > signalLine ? color.green : color.red, transp=90)
// Bollinger Bands
basis = sma(close, 20)
dev = stdev(close, 20)
upper = basis + dev * 2
lower = basis - dev * 2
plot(upper, color=color.green)
plot(lower, color=color.green)
Trend Analysis
thananan67
עקוב
כתב ויתור
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד ב
תנאים וההגבלות
.