ChartArt

Market Trend Strength (MTS) (by ChartArt)

See the current trend strength of the market. An additional filter makes trend consolidation areas visible. The color changes there each bar back and forth between green and red.

This area was interesting. Would have been a better example:


If the filter is deactivated the indicator shows the last measured price trend (green for up and down for red).


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?
study(title="Market Trend Strength (MTS) (by ChartArt)", shorttitle="CA_-_MTS", overlay=true)

// Version 1.0
// Idea by ChartArt on June 3, 2015.
//
// This indicator is measuring if there are two
// consecutive higher or lower prices. Therefore
// it measures the trend strength of the market.
// 
// The additional filter shows the trend before
// the trend changed the last time. This filter
// makes consolidation areas without a trend visible.
//
// List of my work: 
// https://www.tradingview.com/u/ChartArt/

switch=input(true, title="Show consolidation areas? (The color changes there each bar)")
ShowConsolidation = 2

GetBgColor =	iff( (hl2 > hl2[1]) and (hlc3 > hlc3[1]) and (close > close[1])  and  (hl2[1] > hl2[2]) and (hlc3[1] > hlc3[2]) and (close[1] > close[2]), 1, 
	            iff( (hl2 < hl2[1]) and (hlc3 < hlc3[1]) and (close < close[1])  and  (hl2[1] < hl2[2]) and (hlc3[1] < hlc3[2]) and (close[1] < close[2]), -1, nz(GetBgColor[switch?ShowConsolidation:1], 0) ))

SelectBgColor = GetBgColor == -1 ? red: GetBgColor == 1 ? green: na

bgcolor(SelectBgColor, transp = 85)