Search
Products
Community
Markets
News
Brokers
More
IN
Black Friday sale
Up to 70% OFF
Community
/
Ideas
/
DENEME
Ethereum
DENEME
By yusufilker
Follow
Follow
Updated
Aug 14, 2020
1
Aug 14, 2020
DENEME
Aug 14, 2020
Note
// 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
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.