New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.

TSI Line

I want to set up a screen involving the two lines in the TSI indicator crossing. I have figured out that I one line is named Signal
but can't figure the name of the other line. I tried History and Line for the other without success. Thank you for your help.

Comments

  • TSI(25,13,7) is the black line on the indicator and TSI Signal(25,13,7 ) is the red line.

    You can get both by inserting from the "Technical Indicators" drop down on the Advanced Scan page. Then edit for your logic.
  • golden 123,

    The below is what I use for the TSI. The 3 9 is the default, but I use TSI 4 7 on my Freestockcharts.com to view the best results.

    Freestockcharts don't work with Google. Have to use the IE.

    Scan 22 - True Strength 4 7 ma 9

    [type = stock] AND [country = US] and [Daily EMA(20,Daily Volume) > 500000]

    //and [SCTR > 90]

    and [[TSI(4,7,9) x TSI Signal(4,7,9)]

    or [TSI Signal(4,7,9) x TSI(4,7,9)]]

    - - - - -- - - -
    Scan 22A - Daily True Strength Index 4 7 over 0 North

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [TSI (4,7) crosses 0]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - -
    Scan 22AA - Daily True Strength Index 4 7 over 0 South

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [0 crosses TSI (4,7)]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10

    - - - - - - - - -
    Scan 22B - Daily True Strength Index 3 9 over North.....Default

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [TSI (3,9) crosses 0]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - -
    Scan 22C - Daily True Strength Index 3 9 over South.....Default

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [0 crosses TSI (3,9)]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - - -
    Scan 23 - WEEKLY True Strength Index 3 9 over 0 North

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [weekly TSI (3,9) crosses 0]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - - - -
    Scan 23A - WEEKLY True Strength Index 3 9 over 0 South

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [0 crosses weekly TSI (3,9)]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - - - - -
    Scan 24 - WEEKLY True Strength 4 7 over 0 North

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [weekly TSI (4,7) crosses 0]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - - -
    Scan 24A - WEEKLY True Strength 4 7 over 0 South

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [0 crosses weekly TSI (4,7)]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    Hope the above mess can be some assistance.

    Quill -
Sign In or Register to comment.