Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Cycle Identifier ??
Collapse
X
-
Cycle Identifier ??
Anyone put together a cycle identifier like the picture attached. That plots a (1) for UP and (-1) for DOWN?Tags: None
-
What I'm working with now, has 10000 variables, although 100 is more accruate. If you know of anything with only two plots (1) or (-1), like in the image attached to the initial post.
Comment
-
You can create two dataseries based on this indicator/plot in the chart which will return 1 and -1 values if true. Something like this (where Plot is the indicator in the chart):Originally posted by mainstream View PostAnyone put together a cycle identifier like the picture attached. That plots a (1) for UP and (-1) for DOWN?
if (Plot.Get(CurrentBar) >0)
myPositiveDataseries.Set(1);
else if (Plot.Get(CurrentBar) <0)
myNegativeDataseries.Set(-1);
Assuming of course that the constant line in your indicator is zero...
Comment
-
Agree. I gathered from the posts before that mainstream is after the method rather than the indicator itself. Anyway, IMO zigzag indicators can indicate cycles with very similar results like CycleIdentifier and without the false signals, but ... they are few bars late...Originally posted by eDanny View PostThat is not so easy in the CycleIdentifier. Many false signals.
Comment
-
Mainstream,
Is this the CycleIdentifier you're looking for? It's called Kelly's Cycle Identifier by Roy Kelly. It's part of the Floor Traders Tools.
Comment
-
His indicator is a proprietary indicator. So I don't want to infringe on his logic or code or anything like that.
Through the community there are a few options. They work fine. They're are however, 10000 potential plots. I was wondering if anyone simplified.
Comment
-
This is something I found on another post and edited it to output a buysig and sellsig bool for use in strategy. It plots the false signals, also. I could not find the original post so I will add it here instead. To call the signal in a strategy use something like the following:
CycleIdentifierGreen(21,12,3,4,1,false, 1).BuySig[0]
GTAttached Files
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
601 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
559 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment