krispa

TICK high/low/ema

194
Teal = Highest Tick of the period
Red = Lowest tick of the period
Yellow ema of ohlc/4
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
//@version=2
//I have no clue of what I did here. Got no experience of programming. Feel free too improve. The TEAL Colored line indicates HIGHEST ticks of the period and the RED indicates LOWEST. The yellow is just a EMA of ohlc/4.
//could probably be used for trading mean reversals by long/shorting the low/high of the day in a sideways market.
study(title="TICK", shorttitle="TICK", overlay=false)

sym1 = "TICK", res1 = period, source1 = high
plot(security(sym1, res1, source1), color=teal, linewidth=2)

sym2 = "TICK", res2 = period, source2 = low
plot(security(sym2, res2, source2), color=red, linewidth=2)

hline(0, color=green, linewidth=1)
linje1 = hline(760, color=blue)
linje2 = hline(-760, color=blue)

medel = security("TICK", period, ema(ohlc4, 3))

plot(medel, color=yellow, linewidth=2)