搜索
产品
社区
市场
新闻
经纪商
更多
CN
Cyber Monday 促销
高达70%折扣
社区
/
观点
/
SIRI PINE SCRIPT - crossover dan barcolor untuk indicator
PUBLIC BANK BHD
教学
SIRI PINE SCRIPT - crossover dan barcolor untuk indicator
由BURSATRENDBANDCHART提供
关注
关注
已更新
2020年7月13日
6
2020年7月13日
Permintaan dari rakan kita untuk mewarnakan candle jika syarat pada stochrsi tercapai serta membuat simple alert berdasarkan syarat tadi.
Semoga terhibur.
2020年7月13日
注释
//
version
=4
study(title="Stochastic RSI", shorttitle="Stoch RSI", format=format.price, precision=2, resolution="")
smoothK = input(3, "K", minval=1)
smoothD = input(3, "D", minval=1)
lengthRSI = input(14, "RSI Length", minval=1)
lengthStoch = input(14, "Stochastic Length", minval=1)
src = input(close, title="RSI Source")
rsi1 = rsi(src, lengthRSI)
k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
d = sma(k, smoothD)
plot(k, "K", color=#0094FF)
plot(d, "D", color=#FF6A00)
h0 = hline(80, "Upper Band", color=#606060)
h1 = hline(20, "Lower Band", color=#606060)
fill(h0, h1, color=#9915FF, transp=80, title="Background")
green = crossover(k,d) and k <= 20 and d <= 20
red = crossover(d,k) and k >=80 and d >= 80
barcolor (color = green ? color.green : red ? color.red : na)
alertcondition(green, title='Green bar', message = '{{tickerid}} - Crossover from below')
alertcondition(red, title='Red bar', message = '{{tickerid}} - Crossover from above')
barcolor
Chart Patterns
Technical Indicators
pinescript
stochrsicross
Trend Analysis
trendbandguide
BURSATRENDBANDCHART
关注
更多:
相关出版物
Persamaan indikator yang selalu digunakan
由BURSATRENDBANDCHART提供
Alert indikator tanpa script
由BURSATRENDBANDCHART提供
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在
使用条款
阅读更多信息。