Announcement

Collapse
No announcement yet.

Fischer Histogram

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

  • Fischer Histogram

    Hi could someone please change the attached EFS study into
    a Histogram.

    Many thanks
    Attached Files

  • #2
    abbers
    The attached efs should do what you asked
    Alex

    Attached Files

    Comment


    • #3
      Yep thats great......once again many thanks for your
      quick reply.

      Cheers

      Comment


      • #4
        Via PM was asked to modify the efs to plot the histogram of the difference bewteen the two returns.
        Alex

        Attached Files

        Comment


        • #5
          Where can I find more informations about the fisher indicators?
          The fisher 3b looks interesting.

          Tomcat8

          Comment


          • #6
            Hi Tomcat,

            You may want to read the following document regarding the Fisher Transform. Kind of heavy duty reading, but quite informative. Hope this helps.

            Comment


            • #7
              Thank you.
              Does exist an efs for the fisher xform(h+l)2,10) ?
              Or is the fisher 3b the fisher xform?

              The fisher 3b doesn´t work with 2 and 3 min. bars for es and nq.
              Can someone help?


              Tomcat

              Comment


              • #8
                Tomcat
                That seems to happen when using a 24 hour Time Template probably due to a divide by 0 error caused by a series of bars with High equal to Low.
                Try adding the following after line 41
                if((MaxH-MinL)==0)
                return;

                I think that should fix the problem
                Alex

                Comment


                • #9
                  Thanks. It works.

                  Alex, could you tell me in which line I can change the color of the
                  sky blue line which crosses the red and white histogram in a dark blue. I only see the colors of the histogram.

                  Thanks.

                  Tomcat

                  Comment


                  • #10
                    Tomcat
                    The color is defined in line 7 in the following statement setDefaultBarFgColor(Color.RGB(153,204,255), 1);
                    If you want it dark blue then replace it with setDefaultBarFgColor(Color.navy, 1);
                    Alex

                    Comment


                    • #11
                      Thank you, Alex.

                      Tomcat

                      Comment

                      Working...
                      X