Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Kaufman's Efficiency Ratio
Collapse
X
-
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.Tags: None
-
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
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
87 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
47 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
66 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
69 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
58 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment