vdubus

Momentum VMA KITKAT CROSS v2.1

*Update couple of fixes + installed full Kitkat.

开源脚本

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

免责声明

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

想在图表上使用此脚本?
//@version=2

//╭╮╱╱╭╮╭╮╱╱╭╮
//┃╰╮╭╯┃┃┃╱╱┃┃
//╰╮┃┃╭┻╯┣╮╭┫╰━┳╮╭┳━━╮
//╱┃╰╯┃╭╮┃┃┃┃╭╮┃┃┃┃━━┫
//╱╰╮╭┫╰╯┃╰╯┃╰╯┃╰╯┣━━┃
//╱╱╰╯╰━━┻━━┻━━┻━━┻━━╯
//╭━━━┳╮╱╱╱╱╱╱╱╭╮
//┃╭━╮┃┃╱╱╱╱╱╱╱┃┃
//┃┃╱╰┫╰━┳━━┳━╮╭━╮╭━━┫┃
//┃┃╱╭┫╭╮┃╭╮┃╭╮┫╭╮┫┃━┫┃
//┃╰━╯┃┃┃┃╭╮┃┃┃┃┃┃┃┃━┫╰╮
//╰━━━┻╯╰┻╯╰┻╯╰┻╯╰┻━━┻━╯
//━╯
//Momentum VMA KITKAT CROSS v2.1
//Vdubus_Channel http://www.vdubus.co.uk/
study(title = "Momentum VMA KITKAT CROSS v2.1", shorttitle="MVMA_KITKAT_CROSS_v2.1", overlay = true)
length = input(25, minval=1)
src = input(close, title="Source")
mvma = wma(2*wma(src, length/2)-wma(src, length), round(sqrt(length)))
plot(mvma, linewidth=2, offset=+1, color=blue, transp=0, title="MVMA 1")
//
length2 = input(21, minval=1)
src2 = input(close, title="Source")
mvma2 = wma(2*wma(src2, length2/2)-wma(src2, length2), round(sqrt(length2)))
plot(mvma2, linewidth=2, offset=+0, color=red, transp=0, title="MVMA 2")
//
source = close, length3 = input(9, minval=1)
Lead = wma(2*wma(source, length3/2)-wma(source, length3), round(sqrt(length3)))
plot(Lead, linewidth=3, offset=+0, color=black, transp=0, title=" Lead MVMA")

plot(cross(Lead,mvma2) ? mvma2 : na, style = cross, linewidth = 4, title="MVMA cross")

RST = input(title='KITKAT 1:', type=integer, defval=16)     //
RSTT = valuewhen(high >= highest(high, RST), high, 0)
RSTB = valuewhen(low <= lowest(low, RST), low, 0)
RT2 = plot(RSTT, color=RSTT != RSTT[1] ? na : red, linewidth=4, offset=+0, title="Resistance")
RB2 = plot(RSTB, color=RSTB != RSTB[1] ? na : green, linewidth=4, offset=0, title="Support")

////////////////////////////////////////////////////

RST2 = input(title='KITKAT 2:', type=integer, defval=16)     //
RSTT2 = valuewhen(high >= highest(high, RST2), high, 1)
RSTB2 = valuewhen(low <= lowest(low, RST2), low, 1)
RT22 = plot(RSTT2, color=RSTT2 != RSTT2[1] ? na : red, linewidth=9, offset=+0, title="Resistance")
RB22 = plot(RSTB2, color=RSTB2 != RSTB2[1] ? na : green, linewidth=9, offset=0, title="Support")

////////////////////////////////////////////////////