搜索
产品
社区
市场
新闻
经纪商
更多
CN
开始
社区
/
指标和策略
/
EmreGMS
OPEN-SOURCE SCRIPT
EmreGMS
由HorisKiris提供
关注
关注
前天
3
添加到收藏
添加到收藏
前天
//
version
=5
indicator("Birleştirilmiş ALMA ve Medyan", overlay=true)
// ALMA İndikatörü Ayarları
almaLength = input.int(9, title="ALMA Periyodu", minval=1)
almaOffset = input.float(0.85, title="ALMA Offset", step=0.05)
almaSigma = input.float(6, title="ALMA Sigma", step=0.5)
almaValue = ta.alma(close, almaLength, almaOffset, almaSigma)
// Medyan İndikatörü Ayarları
medyanLength = input.int(14, title="Medyan Periyodu", minval=1)
medyanValue = ta.median(close, medyanLength)
// ALMA ve Medyan'ı Birleştir
combinedValue = (almaValue + medyanValue) / 2
// Çizgileri Grafikte Göster
plot(almaValue, color=color.blue, linewidth=2, title="ALMA")
plot(medyanValue, color=color.green, linewidth=2, title="Medyan")
plot(combinedValue, color=color.red, linewidth=3, title="Birleştirilmiş ALMA ve Medyan")
// Alım/Satım Sinyalleri
buySignal = ta.crossover(close, combinedValue)
sellSignal = ta.crossunder(close, combinedValue)
// Sinyalleri Göster
plotshape(buySignal, style=shape.labelup, location=location.belowbar, color=color.green, text="AL")
plotshape(sellSignal, style=shape.labeldown, location=location.abovebar, color=color.red, text="SAT")
Candlestick analysis
Fundamental Analysis
Moving Averages
开源脚本
本着真正的TradingView精神,此脚本的作者已将其开源,以便交易者可以理解和验证它。向作者致敬!您可以免费使用它,但在出版物中重复使用此代码受
网站规则
约束。 您可以收藏它以在图表上使用。
想在图表上使用此脚本?
添加到收藏
HorisKiris
关注
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在
使用条款
阅读更多信息。