TraderSkyr

DP's Countertrend Indicator

Shows your potential profit by going short(red)/long(green) against the current trend, use with you favorite entry/exit method for maximum effect, can be adjusted for share cost and commission.
开源脚本

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

免责声明

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

想在图表上使用此脚本?
//Shows your potential profit by going short(red)/long(green) against the current trend, use with you favorite entry/exit method for maximum effect, 
//can be adjusted for share cost and commission.

study(shorttitle = "DP_CTI", title="DP's Countertrend Indicator")
MA = input(120, minval=1, title = "Moving Avg Length")
source = close
mg = na(mg[1]) ? ema(source, MA) : mg[1] + (source - mg[1]) / (MA * pow(source/mg[1], 4))
Bars = input(30,title="Lookback Bars")
Cost = input(0,type = float,title = "Per Share Cost $")
Comm = input(0, type = float, title = "Per Share Commission $")

BullR = highest(close,Bars)-ohlc4
BearR = ohlc4-lowest(close,Bars)
BullT = iff(high<mg,mg,close + BullR)
BearT = iff(low>mg,mg,close - BearR)

BuC = iff(BullT-close-(Cost+Comm)>0,green,lime)
BeC = iff(close-BearT-(Cost+Comm)>0,maroon,red)

Hull = wma(2*wma(source, MA/2)-wma(source, MA), round(sqrt(MA)))


plot((BullT-close)-(Cost+Comm), color=BuC, style=histogram, linewidth = 2, trackprice = false)
plot((close-BearT)-(Cost+Comm), color=BeC, style=histogram, linewidth = 2, trackprice = false)