Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Kaufman's Efficiency Ratio

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

    Kaufman's Efficiency Ratio

    I've attached an indicator for K-Efficiency that can be used as a trend strength indicator. Unfortunately, it currently has a bug. It compiles fine, but doesn't plot anything. I've gone over the math a bunch of times and haven't been able to find my error. I figured I would put it out to the community where there are a bunch of smart people who may have a few moments to help out. I also included the original code from TS commented out as a reference.
    Attached Files

    #2
    Learning1,

    You should always check the Control Center Log tab for errors. You will likely see "index out of range" exceptions since you are accessing Input[1] on the first bar of the chart where [1] 1 bar ago does not yet exist.

    Add something like:

    if (CurrentBar < 1)
    return;

    as the first line of the OnBarUpdate() method.
    RayNinjaTrader Customer Service

    Comment


      #3
      Undated and fixed

      Thanks Ray, that was exactly the issue. Also thanks for the log advice - it will come in handy as my education continues.

      Here is the updated indicator for the community.
      Attached Files

      Comment


        #4
        You are welcome.

        I cleaned up the file and listed it as an import zip file (preferred approach to distributing source files) and put it here -



        Thanks for your contribution.
        RayNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by mattbsea, Today, 05:44 PM
        0 responses
        4 views
        0 likes
        Last Post mattbsea  
        Started by RideMe, 04-07-2024, 04:54 PM
        6 responses
        31 views
        0 likes
        Last Post RideMe
        by RideMe
         
        Started by tkaboris, Today, 05:13 PM
        0 responses
        2 views
        0 likes
        Last Post tkaboris  
        Started by GussJ, 03-04-2020, 03:11 PM
        16 responses
        3,282 views
        0 likes
        Last Post Leafcutter  
        Started by WHICKED, Today, 12:45 PM
        2 responses
        20 views
        0 likes
        Last Post WHICKED
        by WHICKED
         
        Working...
        X