Announcement

Collapse
No announcement yet.

2002 Jan: The True Strength Index (Blau_TSI.efs)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 2002 Jan: The True Strength Index (Blau_TSI.efs)

    JasonK,
    I just found your TSI indicator and after doing some more research found this article http://www.sixer.com/TSI_ActiveTrader0902.pdf.
    I also looked for the Slope Divergence indicator described in this article on the Esignal web site and didn't find anything. It could be called something else.
    Could you or anyone else point me in the right direction?

    Russ

  • #2
    Hello Russ,

    As far as I know, it hasn't been developed for EFS. If this isn't something you are able to code yourself, you may want to contact one of our EFS Consultants.
    Jason K.
    Project Manager
    eSignal - an Interactive Data company

    EFS KnowledgeBase
    JavaScript for EFS Video Series
    EFS Beginner Tutorial Series
    EFS Glossary
    Custom EFS Development Policy

    New User Orientation

    Comment


    • #3
      Blau TSI crossover

      I have been trying to add lines to the Blau_TSI.efs that would alert me to when the TSI crosses the Signal. I have been quite unsuccessful. Can anyone help?

      Comment


      • #4
        dbtaylor
        Add the following variable outside of main.

        PHP Code:
        var vLastAlert = -1
        Then in main just before the return statement add the following lines

        PHP Code:
        if(nTSI*100>nSignal*100){
                if(
        vLastAlert!=1)Alert.playSound("ding.wav");
                
        vLastAlert=1;
            }
            if(
        nTSI*100<nSignal*100){
                if(
        vLastAlert!=2)Alert.playSound("ding.wav");
                
        vLastAlert=2;
            } 
        This will generate a single sound alert every time the Signal line crosses the TSI
        Alex

        Comment

        Working...
        X