Announcement

Collapse
No announcement yet.

Weird RSI

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

  • #16
    RE: Reply to post 'Weird RSI'

    Sorry to be dim but do I write these code lines after the if functions?
    At the moment I am getting an output error

    Russell

    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: 24 March 2003 16:02
    To: [email protected]
    Subject: Reply to post 'Weird RSI'


    Hello Russell,

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Comment


    • #17
      RSI fixed code

      For anyone interested JasonK has posted a fix for RSI Std in the efs studies main category. I can't post the link myself.
      It makes a small but noticeable difference.

      Comment


      • #18
        Re: RE: Reply to post 'Weird RSI'

        Originally posted by Russell
        Sorry to be dim but do I write these code lines after the if functions?
        At the moment I am getting an output error

        Russell
        Yes, it would go immediately after these if lines...

        PHP Code:
        if (vValue 65 && vSLOW 65vOverBoughtFlag true;
        if (
        vValue 30 && vSLOW 30vOverSoldFlag true

        What output error are you getting?
        Regards,
        Jay F.
        Product Manager
        _____________________________________
        Have a suggestion to improve our products?
        Click Support --> Request a Feature in eSignal 11

        Comment


        • #19
          RE: Reply to post 'Weird RSI'

          // Entry Point
          if (vValue > 75 && vSLOW > 75) vOverBoughtFlag = true;
          if (vValue < 25 && vSLOW < 25) vOverSoldFlag = true;
          debugPrintLn("OB Flag is " + vOverBoughtFlag);
          debugPrintLn("OS Flag is " + vOverSoldFlag);

          I get that debugPrintLn is not defined

          -----Original Message-----
          From: [email protected] [mailto:[email protected]]
          Sent: 26 March 2003 15:42
          To: [email protected]
          Subject: Reply to post 'Weird RSI'


          Hello Russell,

          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~

          Comment


          • #20
            try debugPrintln

            Comment


            • #21
              Thank you David! Didn't see the miscapitalization. Indeed, debugPrintln does the trick.

              ~Jay
              Regards,
              Jay F.
              Product Manager
              _____________________________________
              Have a suggestion to improve our products?
              Click Support --> Request a Feature in eSignal 11

              Comment


              • #22
                debug

                so its debugPrintIn ("OB flag is ")+vOverboughtFlag); ??
                Cos with this I still get the error message o fline not defined

                Comment


                • #23
                  Hello Russell,

                  It's debugPrintln (last two letters are LN but in lower case.) Just so we are all on the same page, I inserted the debug code into the attached EFS.
                  Attached Files
                  Regards,
                  Jay F.
                  Product Manager
                  _____________________________________
                  Have a suggestion to improve our products?
                  Click Support --> Request a Feature in eSignal 11

                  Comment


                  • #24
                    RE: Reply to post 'Weird RSI'

                    Jay

                    I have now had some experience watching the formula in live action and the
                    most irritating thing is that it won't work on close of bar.
                    Any ideas why?

                    Russ

                    -----Original Message-----
                    From: [email protected] [mailto:[email protected]]
                    Sent: 24 March 2003 16:02
                    To: [email protected]
                    Subject: Reply to post 'Weird RSI'


                    Hello Russell,

                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~

                    Comment

                    Working...
                    X