搜尋
產品
社群
市場
新聞
經紀商
更多
TW
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提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。