✅ Download link for the Volume Intensity indicator: tosindicators.com/indicators/volume-intensity
@andreialcaza2 ай бұрын
Intresting video 👍
@TOSIndicators2 ай бұрын
Thanks!
@galph8612 күн бұрын
Nice!
@TOSIndicators12 күн бұрын
Thanks!
@BillyJ10Ай бұрын
That's an excellent idea for an indicator. Would be nice if you increased it to 7 tickers & default it to the "Mag 7".
@TOSIndicatorsАй бұрын
Thank you! You can add more symbols by copy/pasting more of the code block chunks.
@tonykukush2 ай бұрын
great stuff! i made another piece to this code combining intensities into one additional line. def combinedIntensity = (intensity1 + intensity2 + intensity3 + intensity4 + intensity5) / 5; plot combinedIntensityLine = if !IsNaN(close) then combinedIntensity else Double.NaN; combinedIntensityLine.setPaintingStrategy(PaintingStrategy.Line); combinedIntensityLine.setLineWeight(3); combinedIntensityLine.AssignValueColor( if combinedIntensity > 2 then color.Light_Green else if combinedIntensity > 1.5 then Color.Green else if combinedIntensity > 1 then Color.Dark_Green else if combinedIntensity > 0.75 then Color.Dark_Red else if combinedIntensity > 0.5 then color.Red else color.Light_Red );
@TOSIndicators2 ай бұрын
Nice addition! Thanks for sharing.
@virgilio19562 ай бұрын
will this work on futures ?
@TOSIndicators2 ай бұрын
It should!
@edwardsciacca8012Ай бұрын
why? volume is the total of buy's sell's to open and close break them up separate them then use them .