Use ChatGPT to Build a Volume Indicator for ThinkOrSwim

Поділитися
Вставка
  • Опубліковано 22 гру 2024

КОМЕНТАРІ •

  • @TOSIndicators
    @TOSIndicators  Місяць тому +2

    ✅ Download link for the Volume Intensity indicator:
    tosindicators.com/indicators/volume-intensity

  • @andreialcaza
    @andreialcaza Місяць тому +1

    Intresting video 👍

  • @BillyJ10
    @BillyJ10 18 днів тому

    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
      @TOSIndicators  18 днів тому

      Thank you! You can add more symbols by copy/pasting more of the code block chunks.

  • @virgilio1956
    @virgilio1956 Місяць тому +2

    will this work on futures ?

  • @tonykukush
    @tonykukush Місяць тому +3

    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
    );

  • @edwardsciacca8012
    @edwardsciacca8012 8 днів тому

    why? volume is the total of buy's sell's to open and close break them up separate them then use them .