UDAY_C_Santhakumar

UCS_I_Martin Pring's Special K

Pring's Special K is a cyclical indicator created by Martin Pring. His method combines short-term, intermediate and long-term velocity into one complete series. Useful tool for Long Term Investors

Function -
1) Primary Trend Reversals at a Relatively Early Stage.
2) Timing Short term Price Moves.

This indicator is always part of my analysis indicator set on stockcharts.com, Wanted to share it here.
Primary Use is to find TOPs and BOTTOMS in a Market - Not 100% but the most reliable warning sign when the market is TIRED.

Drawback - Need at least 725 Bars to calculate this - Originally Developed by Martin Pring.

MORE INFO --------------------->>>
stockcharts.com...school/doku.php?id=chart_s...

My Personal Goal for this Indicator is to convert this into an Overlay, with All the components (Short/Mid/Long) meaningfully plotted out. This would make this indicator far more useful in predicting the future longer term trend.

Uday C Santhakumar
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
// Created by UCSGears
// This indicator is always part of my analysis indicator set on stockcharts.com, Wanted to share it here.
// Primary Use is to find TOPs and BOTTOMS in a Market - Not 100% but the most reliable warning sign.
// Need at least 725 Bars to calculate this - Originally Developed by Martin Pring
// From the book "Technical Analysis Explained" - http://www.amazon.com/Technical-Analysis-Explained-Fifth-Edition/dp/0071825177

study(title="UCS_Martin Pring's Special K", shorttitle="UCS_Pring_sK")

a = input(10, title = "Smooth" )

roc1 = (sma(roc(close,10),10)*1)
roc2 = (sma(roc(close,15),10)*2)
roc3 = (sma(roc(close,20),10)*3)
roc4 = (sma(roc(close,30),15)*4)

roc5 = (sma(roc(close,40),50)*1)
roc6 = (sma(roc(close,65),65)*2)
roc7 = (sma(roc(close,75),75)*3)
roc8 = (sma(roc(close,100),100)*4)

roc9 = (sma(roc(close,195),130)*1)
roc10 = (sma(roc(close,265),130)*2)
roc11 = (sma(roc(close,390),130)*3)
roc12 = (sma(roc(close,530),195)*4)

osc = roc1+roc2+roc3+roc4+roc5+roc6+roc7+roc8+roc9+roc10+roc11+roc12

plot(osc, color=blue, title="Martin Pring's Special K")
plot(sma(osc,a), color = red, title = "Smooth")
hline(0, title="Zero Line")