repo32

Price above/below EMA

This script will give you red/green columns to indicate if price is above or below a certain EMA. With Candlestick charting, we are looking for price in relation to the 8 ema Trigger Line (T-Line). You can adjust this indicator to fit your need. Simple, but nice to quickly see.

Oops. Last line's title should be "Sell". Doesn't affect display though.
Açık kaynak kodlu komut dosyası

Gerçek TradingView ruhuyla, bu betiğin yazarı, yatırımcının anlayabilmesi ve doğrulayabilmesi için onu açık kaynak olarak yayınladı. Yazarın eline sağlık! Bunu ücretsiz olarak kullanabilirsiniz, ancak bu kodun bir yayında yeniden kullanımı Kullanım Koşulları ile yönetilir. Bir grafikte kullanmak için favorilere ekleyebilirsiniz.

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.

Bu komut dosyasını bir grafikte kullanmak ister misiniz?
//Created by Robert Nance 060915
//This little script simply gives you a quick visual cue of where price is compared to a particular EMA.
// It is defaulted to the 8 EMA
study(title="Price above/below EMA", shorttitle="BuySellEMA", overlay=false)
len = input(8, minval=1, title="Length")
src = input(close, title="Source")
out = ema(src, len)
plot(close >= out, title="Buy", style=columns, color=lime)
plot(close < out, title="Buy", style=columns, color=red)