TrendoBoom

Chinkou_Pro

Welcome traders,

I have made this script wishing a higher gain,

Originally, this strategy is taken from Ichimoku Kinko Hyo

Simply:
ChinkouPro crossing with price is giving a clear opportunity.
Review it, master it, work it.

first version

change log
  • Delete function of lazy trader { smooth candle }
  • Delete function of alert , { make alert from chart it's better }
  • Enjoy with it , and contact me for any reason :)

Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

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.

Want to use this script on a chart?
// 150416 @TrendoBoom 
study(title="Chinkou_Pro", shorttitle="Ch_P", overlay=true)
//inputs
src = input(close)
of = input(-9, title="Chinkou'-26'")
// color of 1:0
colo = close >= close[1] ? lime : red 
// plot for chinkou
plot(src, offset=of, transp=70, style=line, color=colo, title='Chinkou Span', linewidth=3)
// Have A Good Day .