Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Gartley Patern indicatior

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

    #61
    Daniel, I am interested in your harmonic pattern tool. I am specifically looking for a modification to the F3 Ray tool that has the degrees of the angle of the line. I saw your line had an angel.
    I trade the TF Russell, every day, full time. NINJA is my only platform after many sorts. Thanks in Advance. my email; [email protected]

    Comment


      #62
      Originally posted by silverfox View Post
      Daniel, I am interested in your harmonic pattern tool.
      Be sure to check out neoHarmonics.com for more information!

      Comment


        #63
        Originally posted by zweistein View Post
        Here my Gartley indicator modified to run on NT7.

        Please read the description in the link below and also in the pdf file.
        Gartley patterns are rare, so don't expect to see them very often.

        For professional work you can contact me on my web site www.zweisteintrading.eu

        Regards

        Andreas




        http://blog.nobletrading.com/2008/05...g-pattern.html


        Main changes:
        X (stop) and IdealProfitTarget Values are available.

        Be advised: You may find bugs, if you do so please report.


        You can:

        1. Just have you show the M and W patterns
        2. Call it from another indicator or strategy :

        if(GartleyButterflyPattern(Input,200,25,0.03).Patt ernType[0]==GartleyButterflyPatternType.Bullish) {
        Print("X (stop) =");
        Print(GartleyButterflyPattern(Input,200,25,0.03).X[0]);
        Print("IdealProfitTarget=");
        Print(GartleyButterflyPattern(Input,200,25,0.03).I dealProfitTarget[0]);

        }
        // 200 is take 200 barsback into account
        // 25 is 25% Tolerance according to web source given above
        // 0.05 is Percent Deviation value according to ZigZag indicator.

        offer me a drink


        Have a nice evening

        Andreas
        Your crapley attached doesn`t work!

        Comment


          #64
          Hi @neoikon , this looks awesome !!! I imported the GartleyNT7.zip but nothing shows up When compiling I get error CS1501 "No overload for GartleyButterflyPattern takes 4 arguments". I'm new to Ninja Trader, so please let me know if I'm doing something wrong.

          Thank you,

          Pedro
          Last edited by protrader77; 11-14-2013, 02:09 AM.

          Comment


            #65
            Originally posted by vlc View Post
            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>
            would you be able to change your code by entering parameters min and max like shown in this jpg? Thx
            Attached Files

            Comment


              #66
              can we have an Market analizer from the same?

              can we have an Market analizer from the same?

              Comment


                #67
                Hello everyone, is this indicator available for NT8?

                Comment


                  #68
                  Hi @zweistein,

                  Thank you for sharing.

                  I was wondering if you could translate this indicator to Ninjatarder 8.

                  Thank you in advance for that.

                  Best Regards
                  Carlos

                  Comment


                    #69
                    Hi traderfutures and Cyanez ,

                    I have not used the indicator below but might be worth a look.

                    Is in the free downloads section on Futures.io

                    HedgePlay


                    Download: mkHarmonics Indicator to detect Harmonic Patterns. I built this indicator some time ago for myself but later decided to share it here on Futures.io. The following patterns are supported: - Bat - Alt Bat - Butterfly - Crab - Deep Crab - Gartley - AB=CD - …
                    personmk77ch
                    The best futures trading community on the planet: futures trading, market news, trading charts, trading platforms, trading strategies
                    Last edited by hedgeplay; 05-08-2021, 09:03 PM.

                    Comment


                      #70
                      Hi @HedgePlay,
                      Thank you for your reply.
                      Unfortunately, they have made all the indicator Access restricted to Elite Members only.
                      Is there any other way that you could share it?

                      Thank you in advance
                      Best Regards
                      Carlos

                      Comment


                        #71

                        While I personally think joining is well worth the money for sure there a large number of people with non-paid accounts who seems to still be accessing the 'free section' indicators just fine.

                        Last I heard if you create an account, validate your email, give it a few minutes to stew, completely your browser, then launch your browser, login to the site and THEN past the link I posted above into your browser after you have logged into you account you would be able to download the indicator zip file.

                        Is that not true?

                        Thanks,
                        HedgePlay

                        Comment


                          #72
                          No, They have put all the resources for paid accounts.

                          Comment


                            #73
                            Originally posted by Cyanez View Post
                            No, They have put all the resources for paid accounts.
                            Cyanez, Thanks for posting the reply.


                            That kind of access change is something I should really understand before making further recommendations so to test and validate this access limit..

                            In a new browser I created a new user account using a different email address and confirmed the New Users access limits you mention.


                            I apologize. futures.io is still a great group and a great site but sorry for posting inaccurate information on resources that could be had for free.


                            HedgePlay


                            Comment

                            Latest Posts

                            Collapse

                            Topics Statistics Last Post
                            Started by arvidvanstaey, Today, 02:19 PM
                            4 responses
                            11 views
                            0 likes
                            Last Post arvidvanstaey  
                            Started by samish18, 04-17-2024, 08:57 AM
                            16 responses
                            59 views
                            0 likes
                            Last Post samish18  
                            Started by jordanq2, Today, 03:10 PM
                            2 responses
                            9 views
                            0 likes
                            Last Post jordanq2  
                            Started by traderqz, Today, 12:06 AM
                            10 responses
                            18 views
                            0 likes
                            Last Post traderqz  
                            Started by algospoke, 04-17-2024, 06:40 PM
                            5 responses
                            47 views
                            0 likes
                            Last Post NinjaTrader_Jesse  
                            Working...
                            X