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

I will Develop your Indicator or Strategy for FREE

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Thanks man ! this exactly what I need -- by any chance do you have a download link for it I don't have access to bigmiketrading.

    thanks
    Z

    Comment


      Originally posted by zitroc View Post
      Thanks man ! this exactly what I need -- by any chance do you have a download link for it I don't have access to bigmiketrading.

      thanks
      Z
      If you just need one indicator I will send it to you. If you want to download hundreds, then you should better become a member ..... Big Mike's has over 300 indicators for NinjaTrader 7.....

      Comment


        renko bars

        can u offer a free link to download into NT 7 the indicator
        'better renko bars'
        thx
        [email protected]

        Comment


          Originally posted by jake28787 View Post
          can u offer a free link to download into NT 7 the indicator
          'better renko bars'
          thx
          [email protected]
          BetterRenko is a good alternative to the default Renko bars, because unlike Renko the bar shows the true open, high & low on the chart. This means that it is backtestable.

          However, I do not freely distribute the work of others. Better Renko is available here for members

          The best futures trading community on the planet: futures trading, market news, trading charts, trading platforms, trading strategies


          You can also try to contact the author of the bars, @aslan.

          Comment


            Having Trouble with my strategy which is compiled but not showing backtesting resualt

            Can anyone see where their might be flaws in my code? that will produce back testing results right now its showing up null? If you could get back to me ASAP that would be great.

            Kind Regards,

            Cam


            #region Variables
            // Wizard generated variables
            private bool onlyGoLong = true; // Default setting for OnlyGoLong
            private int aDXStrength = 18; // Default setting for ADXStrength
            private int trailingStopLoss = 30; // Default setting for TrailingStopLoss
            private int stopLoss = 30; // Default setting for StopLoss
            // User defined variables (add any user defined variables below)
            #endregion

            /// <summary>
            /// This method is used to configure the strategy and is called once before any strategy method is called.
            /// </summary>
            protected override void Initialize()
            {
            SetStopLoss("", CalculationMode.Ticks, StopLoss, false);
            SetTrailStop("", CalculationMode.Ticks, TrailingStopLoss, false);

            CalculateOnBarClose = true;
            }

            /// <summary>
            /// Called on each bar update event (incoming tick)
            /// </summary>
            protected override void OnBarUpdate()
            {
            // Condition set 1
            if (OnlyGoLong == true
            && CrossAbove(MACD(12, 26, 9).Avg, MACD(12, 26, 9).Avg, 1)
            && CrossAbove(ADX(14), ADXStrength, 1)
            && CrossAbove(DM(14).DiPlus, DM(14).DiMinus, 1)
            && CrossAbove(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1))
            {
            EnterLong(DefaultQuantity, "");
            }

            // Condition set 2
            if (OnlyGoLong == false
            && CrossBelow(MACD(12, 26, 9).Avg, MACD(12, 26, 9).Avg, 1)
            && CrossBelow(DM(14).DiPlus, DM(14).DiMinus, 1)
            && CrossBelow(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1)
            && CrossAbove(ADX(14), ADXStrength, 1))
            {
            EnterShort(DefaultQuantity, "");
            }

            // Condition set 3
            if (CrossBelow(ADX(14), ADXStrength, 1)
            || CrossBelow(MACD(12, 26, 9).Avg, MACD(12, 26, 9).Avg, 1)
            || CrossBelow(DM(14).DiPlus, DM(14).DiMinus, 1)
            || CrossBelow(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1))
            {
            ExitLong("", "");
            }

            // Condition set 4
            if (CrossAbove(DM(14).DiPlus, DM(14).DiMinus, 1)
            || CrossBelow(ADX(14), ADXStrength, 1)
            || CrossAbove(MACD(12, 26, 9).Avg, MACD(12, 26, 9).Avg, 1)
            || CrossAbove(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1))
            {
            ExitShort("", "");
            }
            }

            #region Properties
            [Description("Only take Long trades, if false only take Short trades")]
            [GridCategory("Parameters")]
            public bool OnlyGoLong
            {
            get { return onlyGoLong; }
            set { onlyGoLong = value; }
            }

            [Description("Trend Strength")]
            [GridCategory("Parameters")]
            public int ADXStrength
            {
            get { return aDXStrength; }
            set { aDXStrength = Math.Max(1, value); }
            }

            [Description("Traling Stop Loss")]
            [GridCategory("Parameters")]
            public int TrailingStopLoss
            {
            get { return trailingStopLoss; }
            set { trailingStopLoss = Math.Max(1, value); }
            }

            [Description("StopLoss")]
            [GridCategory("Parameters")]
            public int StopLoss
            {
            get { return stopLoss; }
            set { stopLoss = Math.Max(1, value); }
            }
            #endregion
            }
            }
            Attached Files

            Comment


              The title of the strategy is Golongorshort

              Thanks in advance for your help. Ive been working on this for a longtime

              Comment


                Bar Reversal Indicator

                Dear All,

                Cheers, I would really appreciate if you could make a what i call a bar reversal indicator (NT7) for me.

                With the following condition:
                1. Reversal Bar Down (Draw Style: Triangle Down above the bar with space)
                The current bar high is higher than previous bar high and close lower than previous bar
                close. =AND(H>H[-1],C<C[-1])

                2. Reversal Bar Up (Draw Style: Triangle Up below the bar with space)
                The current bar low is lower than previous bar low and close higher than previous bar close. =AND(L<L[-1],C>C[-1])

                If you have any question can email me at [email protected]

                With many Thanks

                Regards,
                Michael
                Last edited by Mike8085; 05-26-2013, 01:17 AM.

                Comment


                  Originally posted by michel View Post
                  Hi everybody
                  I am new to NinjaTrader but i have been developing indicators for tradestation for 6 years
                  I'm still getting familliar with Ninja and i need the practice so i will develop strategies for free

                  Note that I wont be taking over complicated requests. keep it simple and clean. if there are too many requests i will take my pick as to which ones i do

                  happy trading

                  Regards,
                  Michel
                  www.fxcteam.com
                  Dear All,

                  Cheers, I would really appreciate if you could make a what i call a bar reversal indicator (NT7) for me.

                  With the following condition:
                  1. Reversal Bar Down (Draw Style: Triangle Down above the bar with space)
                  The current bar high is higher than previous bar high and close lower than previous bar
                  close. =AND(H>H[-1],C<C[-1])

                  2. Reversal Bar Up (Draw Style: Triangle Up below the bar with space)
                  The current bar low is lower than previous bar low and close higher than previous bar close. =AND(L<L[-1],C>C[-1])

                  If you have any question can email me at [email protected]

                  With many Thanks

                  Regards,
                  Michael

                  Comment


                    Programming Services

                    My firm provides custom programming of fully automated strategies and custom indicators. If you can conceive it, we can build it. And for a limited time only, we are offering custom programming services with NO PAYMENTS OR INTEREST for six months. Trust your trading dollars to a Ninja certified firm with more than 6 years of programming experience and 100% satisfied clients. Contact [email protected] for more information.
                    Last edited by canthony; 06-01-2013, 09:19 PM.

                    Comment


                      Originally posted by Mike8085 View Post
                      Dear All,

                      Cheers, I would really appreciate if you could make a what i call a bar reversal indicator (NT7) for me.

                      With the following condition:
                      1. Reversal Bar Down (Draw Style: Triangle Down above the bar with space)
                      The current bar high is higher than previous bar high and close lower than previous bar
                      close. =AND(H>H[-1],C<C[-1])

                      2. Reversal Bar Up (Draw Style: Triangle Up below the bar with space)
                      The current bar low is lower than previous bar low and close higher than previous bar close. =AND(L<L[-1],C>C[-1])

                      If you have any question can email me at [email protected]

                      With many Thanks

                      Regards,
                      Michael
                      Hi Mike,
                      just try the build in "SWING" indicator and set the Strength to 1. You can change the settings of the indicator to show triangeles also. Maybe this coould help quickly ..
                      firstbrain
                      Last edited by firstbrain; 06-20-2013, 07:33 AM.

                      Comment


                        rsi

                        Hi,

                        I need a little help.

                        I use rsi indicator and I want to colour the areas between 20 and 32, 38 and 51, 53 and 62, 68 and 80.

                        Could you tell me the code to do this?

                        thank you

                        Comment


                          Originally posted by kt5ssm View Post
                          Hi,

                          I need a little help.

                          I use rsi indicator and I want to colour the areas between 20 and 32, 38 and 51, 53 and 62, 68 and 80.

                          Could you tell me the code to do this?

                          thank you
                          If you dare code this yourself, you can take the default RSI indicator and a few lines in OnBarUpdate(). You can actually use DrawRectangle() to add the colored areas. Look up the NinjaTrader user manual to find out how to use DrawRectangle().

                          The inconvenience about DrawRectangle() is that it will plot on top of the RSI lines, you cannot make it plot behind the lines, if you put it into the same indicator.

                          It is therefore a better solution to create a separate indicator that plots the 4 colored areas. You can then programmatically set the rectangles behind the RSI lines. Just add a line ZOrder = -1 in the Initialize() section.

                          DrawRectangle() reduces the speed with which the chart is built. If you want to produce an indicator that shows up faster, you may consider to add a custom plot to the RSI.

                          Comment


                            Originally posted by firstbrain View Post
                            Hi Mike,
                            just try the build in "SWING" indicator and set the Strength to 1. You can change the settings of the indicator to show triangeles also. Maybe this coould help quickly ..
                            firstbrain
                            Setting the Swing indicator to 1 does not work, as the indicator does not compare the bar closes, but just takes into account highs and lows.

                            It makes more sense to stick with the rules as posted below in #235. The indicator is pretty easy to code, and a perfect exercise for somebody who wants to start to code in NinjaScript.
                            Last edited by Harry; 06-20-2013, 08:50 AM.

                            Comment


                              That sounds too complicated for me. Could someone make a file that I need to just add?

                              Comment


                                Originally posted by Harry View Post
                                Setting the Swing indicator to 1 does not work, as the indicator does not compare the bar closes, but just takes into account highs and lows.

                                It makes more sense to stick with the code as posted below. The indicator is pretty easy to code, and a perfect exercise for somebody who wants to start to code in NinjaScript.
                                Harry,
                                You are completly right. Just didn'r read the whole post in depth - blame on me
                                But I'm missing the code you advertised in your post ...,
                                firstbrain

                                Comment

                                Latest Posts

                                Collapse

                                Topics Statistics Last Post
                                Started by jclose, Today, 09:37 PM
                                0 responses
                                4 views
                                0 likes
                                Last Post jclose
                                by jclose
                                 
                                Started by WeyldFalcon, 08-07-2020, 06:13 AM
                                10 responses
                                1,413 views
                                0 likes
                                Last Post Traderontheroad  
                                Started by firefoxforum12, Today, 08:53 PM
                                0 responses
                                10 views
                                0 likes
                                Last Post firefoxforum12  
                                Started by stafe, Today, 08:34 PM
                                0 responses
                                10 views
                                0 likes
                                Last Post stafe
                                by stafe
                                 
                                Started by sastrades, 01-31-2024, 10:19 PM
                                11 responses
                                169 views
                                0 likes
                                Last Post NinjaTrader_Manfred  
                                Working...
                                X