OPEN-SOURCE SCRIPT
MA Crossover with +100 Target Label

//version=5
indicator("MA Crossover with +100 Target Label", overlay=true)
// === Input Parameters ===
shortPeriod = input.int(10, title="Short MA Period")
longPeriod = input.int(100, title="Long MA Period")
pointTarget = input.float(100.0, title="Target Points", step=0.1)
// === Moving Averages ===
shortMA = ta.sma(close, shortPeriod)
longMA = ta.sma(close, longPeriod)
// === Plotting MAs ===
plot(shortMA, title="Short MA", color=color.orange)
plot(longMA, title="Long MA", color=color.blue)
// === Crossover Detection ===
bullishCross = ta.crossover(shortMA, longMA)
bearishCross = ta.crossunder(shortMA, longMA)
// === Variables to Track Entry and Targets ===
var float buyPrice = na
var float sellPrice = na
var bool buyActive = false
var bool sellActive = false
// === On Buy Signal ===
if bullishCross
buyPrice := close
buyActive := true
sellActive := false // Reset opposite signal
sellPrice := na
label.new(bar_index, low, "Buy", style=label.style_label_up, color=color.green, textcolor=color.white)
// === On Sell Signal ===
if bearishCross
sellPrice := close
sellActive := true
buyActive :=
indicator("MA Crossover with +100 Target Label", overlay=true)
// === Input Parameters ===
shortPeriod = input.int(10, title="Short MA Period")
longPeriod = input.int(100, title="Long MA Period")
pointTarget = input.float(100.0, title="Target Points", step=0.1)
// === Moving Averages ===
shortMA = ta.sma(close, shortPeriod)
longMA = ta.sma(close, longPeriod)
// === Plotting MAs ===
plot(shortMA, title="Short MA", color=color.orange)
plot(longMA, title="Long MA", color=color.blue)
// === Crossover Detection ===
bullishCross = ta.crossover(shortMA, longMA)
bearishCross = ta.crossunder(shortMA, longMA)
// === Variables to Track Entry and Targets ===
var float buyPrice = na
var float sellPrice = na
var bool buyActive = false
var bool sellActive = false
// === On Buy Signal ===
if bullishCross
buyPrice := close
buyActive := true
sellActive := false // Reset opposite signal
sellPrice := na
label.new(bar_index, low, "Buy", style=label.style_label_up, color=color.green, textcolor=color.white)
// === On Sell Signal ===
if bearishCross
sellPrice := close
sellActive := true
buyActive :=
Açık kaynak kodlu komut dosyası
Gerçek TradingView ruhuna uygun olarak, bu komut dosyasının oluşturucusu bunu açık kaynaklı hale getirmiştir, böylece yatırımcılar betiğin işlevselliğini inceleyip doğrulayabilir. Yazara saygı! Ücretsiz olarak kullanabilirsiniz, ancak kodu yeniden yayınlamanın Site Kurallarımıza tabi olduğunu unutmayın.
Feragatname
Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.
Açık kaynak kodlu komut dosyası
Gerçek TradingView ruhuna uygun olarak, bu komut dosyasının oluşturucusu bunu açık kaynaklı hale getirmiştir, böylece yatırımcılar betiğin işlevselliğini inceleyip doğrulayabilir. Yazara saygı! Ücretsiz olarak kullanabilirsiniz, ancak kodu yeniden yayınlamanın Site Kurallarımıza tabi olduğunu unutmayın.
Feragatname
Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.