搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
CODE for a trading bot in need of correction
TLM / TetherUS PERPETUAL CONTRACT
CODE for a trading bot in need of correction
由SnONFx提供
關注
關注
2023年4月20日
0
2023年4月20日
hello everyone, i wrote a code for a bot i want to create but will need help in correcting some few erros as i cannot get it to work with trading view.
here it is:\
//
version
=5
study("My Indicator")
// Define EMA variables
ema50 = ema(close, 50)
ema200 = ema(close, 200)
// Define ADX variable
adxVal = adx(14)
// Define RSI variable
rsiVal = rsi(close, 14)
// Buy Signal
if (ema50 > ema200 and adxVal > 30 and rsiVal < 70 and volume > average(volume, 50))
strategy.entry("Buy", strategy.long)
// Sell Signal
if (ema50 < ema200 and adxVal < 30 and rsiVal > 70 and volume > average(volume, 50))
strategy.entry("Sell", strategy.short)
Beyond Technical Analysis
SnONFx
關注
更多:
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。