Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Gartley Patern indicatior
Collapse
X
-
you just have to wait for them they dont occur very often .....go long with a bat shape and short with a W shape , you can mess with the T% and zigzag try 30% and zigzag at 1,2 or 3Originally posted by Riverend View PostThank you all for adding to this thread. Would someone who uses this indicator please show a chart with a trade.
Thanks.
Comment
-
Modified for NT7
Haven't seen it pick-up any patterns yet. The code was generating a compile error in NT7, so this is a slightly modified version for use in NT7. But as I say, it isn't picking up patterns on NT7... so far.
DrawLine() method from line 138 needed an extra boolean argument for autoScale
<code>
if(bBearish) {
Match.Set(-1);
// so at least when you call the indicator you get a value when Gartley Pattern matched
// but you have to find out yourself if M or W pattern
tag+="W";
DrawLine(tag+"CD", false, FirstHigh,D,FirstLow,C,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
DrawLine(tag+"BC", false, FirstLow,C,SecondHigh,B,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
DrawLine(tag+"AB", false, SecondHigh,B,SecondLow,A,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
DrawLine(tag+"XA", false, SecondLow,A,ThirdHigh,X,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
}
else {
//bullish
Match.Set(1);
tag+="M";
DrawLine(tag+"CD", false, FirstLow,D,FirstHigh,C,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
DrawLine(tag+"BC", false, FirstHigh,C,SecondLow,B,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
DrawLine(tag+"AB", false, SecondLow,B,SecondHigh,A,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
DrawLine(tag+"XA", false, SecondHigh,A,ThirdLow,X,Plots[0].Pen.Color,Plots[0].Pen.DashStyle,System.Convert.ToInt32(Plots[0].Pen.Width));
}
</code>Attached Files
Comment
-
gartley settings
Andreas, can your modified indy work in Market Analyzer?--was answered as a yes.
...i have posted 4 screenshots of the indicator on a daily and intraday chart. i used different settings to try and capture the pattern. It will not show any patterns. can someone advise on what settings to use? or confirm the settings being used are correct? appreciate any feedback....
Attached Files
Comment
-
I'm having difficulty loading the indicator on my chart. Do you have any recommendations? I saved the Gartley.cs file under My Docs>NinjaTrader 7> bin > Custom > Indicator, but do not see it when I go to select an indicator to add to my chart.
Any help would be great, thanks!
Comment
-
rhogsett,
You will need to open up the NinjaScript Editor and press F5 to compile the NinjaScript assembly first if you try to install a file by copying it around like that. Please note manually manipulating files is not a supported method to install NinjaScript files.Josh P.NinjaTrader Customer Service
Comment
-
mystiq,Originally posted by mystiq View PostAndreas, can your modified indy work in Market Analyzer?--was answered as a yes.
...i have posted 4 screenshots of the indicator on a daily and intraday chart. i used different settings to try and capture the pattern. It will not show any patterns. can someone advise on what settings to use? or confirm the settings being used are correct? appreciate any feedback....
Have you figured out how to get the indicator to capture the pattern? I'm not having any luck.
Thanks,
RGH
Comment
-
Gartley indicator
Hi there, Any chance this could be updated to work with Ninja 7. I still havent figured out how to load it and then I realized it is for Ninja 6.5 and I'm using the latest version of Ninja version 7.0. YUK!! Thank you in advance if possible. Charles Sims AKA: simaron.
Comment
-
I need help
I use NT7, I loaded the Version modified for NT7, I import this indicator sucessfully, add to a chart an see......
.....nothing!
please help.
Does this Indicator not show potential gartley/butterfly patterns with thei potential reversal zones?
Jens
Comment
-
Jens...Originally posted by xenayoo View PostI use NT7, I loaded the Version modified for NT7, I import this indicator sucessfully, add to a chart an see......
.....nothing!
please help.
Does this Indicator not show potential gartley/butterfly patterns with thei potential reversal zones?
Jens

Did you..."Adjust the "Tolerance Percent" to something other than 10"?
As I said, that produces the patterns in NT7 for me.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
650 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 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
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
577 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment