Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Fisher variants

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

    Fisher variants

    Basically a mish mash of Inverse fisher transform over fisher transform, RSI (and Yur4ik in case of first indicator) all put together in the hope of avoiding whipsaw. Only drawbacks I see are
    1. Slight delay for lines to unglue from the top and bottom.
    2. Repaint of last bar in case of the first indicator.
    3. In case of second indicator it gets muddy when long term trend (red) is swayed by the short term trend.
    Any input appreciated.

    Some ideas taken from following:
    Gaussian PDF:


    John Ehler's IFT:
    Attached Files

    #2
    Cool. Thanks for the contribution. If you don't mind could you also put it up on the File Sharing indicator section.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      The Inverse RSIFT works great thank you!! The yurik or euphoric....is blank. I tried it on minute bars, tick and range bars. Am I doing something wrong? How can I get it to work? Thanks!

      Comment


        #4
        Hello wallstreetkid,

        Do you get an error message inside the Log tab of your Control Center?
        JCNinjaTrader Customer Service

        Comment


          #5
          I am having the same problem as wallstreetkid and my log produces the following error: "Failed to call method 'Initialize' for indicator 'Euphoric': 'BarsInProgress' property can't be accessed from within 'Initialize'. Any help would be appreciated. Thanks in advance.

          Comment


            #6
            It would help if you could post the Initialize() method contents of your custom indicator giving you the issue, as the log message states you could not work with BarsInProgress here - so our suggestion would be reworking the method so it would not be used anymore and move bar update relative code then to OnBarUpdate(), then recheck.
            BertrandNinjaTrader Customer Service

            Comment


              #7
              Sorry for not being more clear. The indicator in question is the one posted earlier in this thread called Yurik.zip (though after import it becomes labeled Euphoric)
              Attached Files

              Comment


                #8
                Hi Taggart,

                From the code I can see that in the Initialize method the MIN and MAX are being called, which is why you are receiving that error,

                The OnStartUp() method is something you are want to going to use in order to use those properties.

                This method is after the initialize but before the OnBarUpdate().

                You will need to move the Min and Max into that method.

                Your code will look something like this -
                Code:
                protected override void OnStartUp()
                {
                     min = MIN(High, period);
                     max = MAX(Low, period);
                }
                Below is a link on using the OnStartUp Method
                http://www.ninjatrader.com/support/h...?onstartup.htm

                Please let me know if I can be of further assistance.
                Cal H.NinjaTrader Customer Service

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by LawrenHom, Today, 10:45 PM
                0 responses
                3 views
                0 likes
                Last Post LawrenHom  
                Started by love2code2trade, Yesterday, 01:45 PM
                4 responses
                28 views
                0 likes
                Last Post love2code2trade  
                Started by funk10101, Today, 09:43 PM
                0 responses
                7 views
                0 likes
                Last Post funk10101  
                Started by pkefal, 04-11-2024, 07:39 AM
                11 responses
                37 views
                0 likes
                Last Post jeronymite  
                Started by bill2023, Yesterday, 08:51 AM
                8 responses
                44 views
                0 likes
                Last Post bill2023  
                Working...
                X