LazyBear

Indicators: Chartmill Value Indicator & Random Walk Index

ChartMill Value Indicator & Modified ChartMill Value Indicator :
-------------------------------
Developed by Dirk Vandycke, CVI tracks how far the price spread is from its MA. Since MA keeps increasing even when price consolidates or stalls, it is very difficult for the deviation from a moving average to remain in the overbought or oversold regions for extended periods, which represents a significant improvement over other oscillators such as the RSI and Stochastic indicators.

However, a simple price spread from a moving average would not be comparable across all securities, which would preclude us from using the spread in systematic strategies. Fortunately, Mr.Vandycke addresses this problem by dividing the spread by the average true range, which is dependent on both the price level and volatility of the underlying security.

There is a variation of CVI called Modified CVI, which does time normalization of ATR (not the MA). This indicator supports displaying "Modified CVI" too. Check the options page.

This indicator is best used with other oscillators, to confirm signals. Zero line (in this case, "1" line since the gray line is drawn at the value of 1) crossovers should also be considered as signals.

I suggest tuning the OB/OS levels to match your instrument (usually it is around 0.5/-0.5 range).

More info:
www.traders.com/index.php?option=com...

Random Walk Index
-------------------------
RWI is used to determine if an issue is trending or in a random trading range (like ADX/Aroon). It attempts to do this by first determining an issue's trading range. The next step is to calculate a series of RWI indexes for the maximum look-back period. The largest index move in relation to a random walk is used as today's index.

Michael Poulos, inventor of RWI, recommends 2 to 7 for the short-term time frames and 8-64 for long terms. An issue is trending higher if the long term RWI of highs is greater than 1, while a downtrend is indicated if the long term RWI of lows is greater than 1.

Below are some more rules developed by Mr.Poulos:

- Enter a long (or close short) when the long-term RWI of the highs is greater than 1 and the short-term RWI of lows peaks above 1
- Enter short (or close long) when the long-term RWI of the lows is greater than 1 and the short-term RWI of highs peaks above 1

More info:
- tradingsim.com/blog/random-walk-index/

For displaying only the histogram (as shown in the bottom pane), select "ShowOnlyHistogram" in the options page.


List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
오픈 소스 스크립트

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

면책사항

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

차트에 이 스크립트를 사용하시겠습니까?
//
// @author LazyBear
//
// If you use this code in its original/modified form, do drop me a note. 
//
study("Chartmill Value Indicator [LazyBear]", shorttitle="CVI_LB")
length=input(3)
vc=sma(hl2, length)
useModifiedFormula=input(false, type=bool)
os1=input(-0.51, title="Oversold 1")
ob1=input(0.43, title="Overbought 1")

// os2=input(-1.5, title="Oversold 2")
// ob2=input(1.5, title="Overbought 2")

denom = (useModifiedFormula == true) ? (atr(length) * sqrt(length)) : atr(length)
cvi = (close-vc) / denom

plot(os1, color=green)
plot(ob1, color=red)

// plot(os2, color=green, style=3)
// plot(ob2, color=red, style=3)

plot(cvi, color=blue, linewidth=2)