찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
Black Friday 세일
최대 70% 싸게
커뮤니티
/
아이디어
/
DENEME
이더리움
DENEME
yusufilker의
팔로우
팔로우
업데이트됨
2020년 8월 14일
1
2020년 8월 14일
DENEME
2020년 8월 14일
노트
// This source code is subject to the terms of the Mozilla Public License 2.0
// © yusufilker
//
version
=4
study("AYLIK YILLIK ORTALAMA", overlay=true)
// Getting inputs
hizli = input(title="Hızlı", type=input.integer, defval=30)
yavas = input(title="Yavaş", type=input.integer, defval=365)
src = input(title="Source", type=input.source, defval=close)
ort_tipi = input(title="Basit ortalama", type=input.bool, defval=false)
yavas_ort = ort_tipi ? sma(src, hizli) : ema(src, hizli)
hizli_ort = ort_tipi ? sma(src, yavas) : ema(src, yavas)
plot(yavas_ort, title="yavas_ort", linewidth =2, color=color.orange, transp=0, trackprice = true)
plot(hizli_ort, title="hizli_ort", linewidth =2, color=color.purple, transp=0, trackprice = true)
Trend Analysis
yusufilker
팔로우
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.