// // Author LazyBear // // 이 코드를 원래 형태 또는 바꾸어 쓸 경우, 알려 주십시오. // study(title="WaveTrend [LazyBear]", shorttitle="WT_LB") // study 는 이 코드가 지표임을 나타냄, 전략을 만들려면 strategy 를 쓰면 됨 n1 = input(10, "Channel Length") n2 = input(21, "Average Length") obLevel1 = input(60, "Over Bought Level 1") // 과매수 레벨 1 obLevel2 = input(53, "Over Bought Level 2") // 과매수 레벨 2 osLevel1 = input(-60, "Over Sold Level 1") // 과매도 레벨 1 osLevel2 = input(-53, "Over Sold Level 2") // 과매도 레벨 2
a p = hlc3 // (고 + 저 + 종) / 3 esa = ema(a p, n1) // ema => 지수이평 d = ema(abs(a p - esa), n1) ci = (a p - esa) / (0.015 * d)
HaeRim Lee TradingView Korea Service Manager (kr.tradingview.com) MultiCharts Korea Service Provider (investware.net) TView: ehaerim Skype: ehaerim Kakao: ehaerim Mobile: +82-10-4035-2873
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.