Hausky

Ichimoku-Hausky_v2 Trading System

Made a new version of my trading system. I have added a cloud that is made with 45 EMA and 104 MA. Now you can choose where to set trailing stop. As shown in the example you set trailing stop under the cloud.

开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?
//Created By User Hausky

study(title="Ichimoku-Hausky_v2", shorttitle="Ichi-Hausky_v2", overlay=true)
turningPeriods = input(50, minval=1, title="Tenkan-Sen")
standardPeriods = input(100, minval=1, title="Kinjun-Sen")
EMA  = input(45, minval=1, title="EMA")
MA  = input(104, minval=1, title="MA")
sts = input(true, title="Show Tenkan-Sen")
sks = input(true, title="Show Kinjun-Sen")

//Definitions for Tenkan-Sen (50 Period), Kinjun-Sen (100 Period)
donchian(len) => avg(lowest(len), highest(len))
turning = donchian(turningPeriods)
standard = donchian(standardPeriods)


//Plot Kijun-sen and Tenkan-sen
plot(sts and turning ? turning : na, title = 'Tenkan-Sen', linewidth=2, color=green)
plot(sks and standard ? standard : na, title = 'Kinjun-Sen', linewidth=2, color=blue)

//Definitions for EMA
fPivot = ((high + low + close)/3)
fEMA    = ema(fPivot, EMA)

//Definitions for MA
cMA = sma(close, MA)

//Plot EMA and MA cloud
p1=plot(fEMA, color=fuchsia, title="EMA", linewidth=2)
p2=plot(cMA, color=orange, title="MA", linewidth=2)

//Fill
fill(p1, p2, color=blue, transp=75)