TAtrader

Relative Volume Index v0.1 beta

7
Hello guys,

New volume indicator incoming: now in Beta.
Many thanks in advance to Soru in for testing!
开源脚本

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

免责声明

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

想在图表上使用此脚本?
study(title="Relative Volume Index v0.1 beta")
Price = volume * hlc3
Price_pos = (close >= open) ? Price : na
Price_neg = (close < open) ? Price : na
//iff(Price >= 0, MFI_pos = Price, MFI_neg = Price)
MFI_positive = nz(MFI_positive[1]) + nz(Price_pos)
MFI_negative = nz(MFI_negative[1]) + nz(Price_neg)
Mrat = MFI_positive / MFI_negative
growth_Mrat = (Mrat - Mrat[1]) / Mrat[1]
plot(abs(growth_Mrat) * 100, color = (Mrat > Mrat[1] ? (growth_Mrat > growth_Mrat[1] ? green : orange) : na), style=columns, linewidth=2)