搜索
产品
社区
市场
新闻
经纪商
更多
CN
开始
OPEN-SOURCE SCRIPT
4天前
RSI Oversold & Golden Cross
图表
原始码
更多
1
添加到收藏
添加到收藏
//
version
=5
indicator("RSI Oversold & Golden Cross", overlay=true)
// Input settings
rsiLength = input.int(14, title="RSI Length")
rsiOversold = input.int(30, title="RSI Oversold Level")
shortEmaLength = input.int(50, title="Short EMA Length")
longEmaLength = input.int(200, title="Long EMA Length")
// Calculate RSI
rsi = ta.rsi(close, rsiLength)
// Calculate EMAs
shortEma = ta.ema(close, shortEmaLength)
longEma = ta.ema(close, longEmaLength)
// Golden Cross condition
goldenCross = ta.crossover(shortEma, longEma)
// RSI Oversold condition
rsiOversoldCondition = rsi < rsiOversold
// Combined condition
signal = goldenCross and rsiOversoldCondition
// Plot EMA lines
plot(shortEma, color=color.blue, title="Short EMA")
plot(longEma, color=color.orange, title="Long EMA")
// Plot buy signals
plotshape(series=signal, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY")
// Background color for RSI Oversold
bgcolor(rsiOversoldCondition ? color.new(color.green, 90) : na, title="RSI Oversold Background")
// Alert conditions
alertcondition(signal, title="Golden Cross + RSI Oversold", message="Golden Cross + RSI Oversold detected!")
mandeespa
关注
educational
开源脚本
本着真正的TradingView精神,此脚本的作者已将其开源,以便交易者可以理解和验证它。向作者致敬!您可以免费使用它,但在出版物中重复使用此代码受
网站规则
约束。 您可以收藏它以在图表上使用。
想在图表上使用此脚本?
mandeespa
关注
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在
使用条款
阅读更多信息。