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).


Skrip sumber terbuka

Dalam semangat TradingView yang sebenar, penulis skrip ini telah menerbitkannya dengan menggunakan sumber terbuka supaya pedagang-pedagang dapat memahami dan mengesahkannya. Sorakan kepada penulis! Anda dapat menggunakannya secara percuma tetapi penggunaan semula kod ini dalam penerbitan adalah dikawalselia oleh Peraturan Dalaman. Anda boleh menyukainya untuk menggunakannya pada carta.

Penafian

Maklumat dan penerbitan adalah tidak dimaksudkan untuk menjadi, dan tidak membentuk, nasihat untuk kewangan, pelaburan, perdagangan dan jenis-jenis lain atau cadangan yang dibekalkan atau disahkan oleh TradingView. Baca dengan lebih lanjut di Terma Penggunaan.

Ingin menggunakan skrip ini pada carta?
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)