ChartArt

Hobble Skirt Bottom Impede Fashion (by ChartArt)

A very noisy indicator to detect bottoms and new uptrends.
Original idea by ChartArt.

First published indicator - constructive criticism welcome.
(The indicator is experimental and doesn't work most of the time.)

I would describe it as an "coincident indicator". The signals occur at approximately the same time as the conditions it signifies. Rather than predicting future events it changes at the same time to the upside as possible bottoms show up.

P.S. hobble skirt is a syllable of chart, that is how I came up with the name
"A hobble skirt was a skirt with a narrow enough hem to significantly impede the wearer's stride, and was a short-lived fashion trend around the turn of the twentieth century."

P.P.S. Bottoms are also short-lived...
Skrip open-source

Dalam semangat TradingView, penulis dari skrip ini telah mempublikasikannya ke sumber-terbuka, maka trader dapat mengerti dan memverifikasinya. Semangat untuk penulis! Anda dapat menggunakannya secara gratis, namun penggunaan kembali kode ini dalam publikasi diatur oleh Tata Tertib. Anda dapat memfavoritkannya untuk digunakan pada chart

Pernyataan Penyangkalan

Informasi dan publikasi tidak dimaksudkan untuk menjadi, dan bukan merupakan saran keuangan, investasi, perdagangan, atau rekomendasi lainnya yang diberikan atau didukung oleh TradingView. Baca selengkapnya di Persyaratan Penggunaan.

Inggin menggunakan skrip ini pada chart?
study("Hobble Skirt Bottom Impede Fashion (by ChartArt)", shorttitle = "CA_Hobble_Bottom")

// version 1.0
// idea and art creation by ChartArt on 1-19-2014
//
// A very noisy indicator to detect bottoms and new uptrends.
// The indicator is experimental and doesn't work most of the time, hence the ridiculous name.
//
// list of my work: 
// https://www.tradingview.com/u/ChartArt/

switch1=input(true, title="Enable Hobble Skirt Bottom?")
switch2=input(true, title="Enable Fashion?")
switch3=input(true, title="Enable Impede?")

skirt = low[0]-low[1]
hobble_skirt = ((skirt[0]-skirt[1])+(skirt[0]-skirt[2]))/2
bottom=low[0]>low[1] ? green : red
impede=(low[0]>low[1] or low[1]>low[2]) and (high[0]>high[1] or high[1]>high[2]) and (hl2[0]>hl2[1] or hl2[1]>hl2[2]) and skirt>0 ? green : red
fashion_length = input(3, title="Fashion Length")
fashion=ema(hobble_skirt,fashion_length)

plot(switch1?hobble_skirt:na, color=bottom, linewidth=3)
plot(switch2?fashion:na, color=aqua, linewidth=2, linewidth=1)
bgcolor(switch3?impede:na, transp=80)