찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
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에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.