ehaerim

[번] 지표: 웨이브 트렌드 오실레이터 [WT]

ehaerim Mis à jour   
KORBIT:BTCKRW   None
웨이브트렌드 오실레이터 (WaveTrend Oscillator) 는 유명한 TS/MT 지표를 (www.youtube.com/watch?v=7vhIsk51...) 포팅한 것입니다.

오실레이터가 과매수 밴드 (붉은 줄) 위에서 그 아래 점선을 뚫을 때가 보통 좋은 매도 신호가 됩니다. 마찬가지로 오실레이터가 과매도 밴드 (녹색 줄) 아래에서 그 위 점선을 뚫을 때가 좋은 매수 신호가 됩니다.

차트에 뚫는 지점을 몇개 표시해 놓았습니다. 보다시피, 그 신호들만 나오는 것은 아니니 여러분이 원하는 종목에 넣어서 해보고 의견을 말해 주십시오.

---- 이 차트에서 커스텀 지표 임포트 및 사용법 (PDF) ----
drive.google.co...mNrZUY1dTA/edit?usp=sharin...


//
// @author LazyBear
//
// 이 코드를 원래 형태 또는 바꾸어 쓸 경우, 알려 주십시오.
//
study(title="WaveTrend ", 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)

wt1 = ema(ci, n2)
wt2 = sma(wt1,4) // sma => 단순이평

plot(0, color=gray) // 0 기준선
plot(obLevel1, color=red) // 과매수 1선
plot(osLevel1, color=green) // 과매도 1선
plot(obLevel2, color=red, style=3) // 과매수 2선
plot(osLevel2, color=green, style=3) // 과매도 2선

plot(wt1, color=green) // 웨이브트렌드 1
plot(wt2, color=red, style=3) // 웨이브트렌드 2
plot(wt1-wt2, color=blue, style=area, transp=80) // 웨이브트렌드1 - 웨이브트렌드 2

나의 무료 지표 리스트: bit.ly/1LQaPK8
나의 앱스토어 지표 리스트: blog.tradingview.com/?p=970
Commentaire:
뚫는 지점 표시해 놓았다고 했는데 깜박 잊고 못한 상태에서 퍼블리쉬가 되어 버렸네요
그냥 직접들 해보시면 되지 않을까 싶습니다

HaeRim Lee
TradingView Korea Service Manager (kr.tradingview.com)
MultiCharts Korea Service Provider (www.investware.net)
TView: ehaerim
Skype: ehaerim
Kakao: ehaerim
Mobile: +82-10-4035-2873
Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.