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...
오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
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)