Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How do I use fibonacci pivots indicator for intraday trading?

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

    How do I use fibonacci pivots indicator for intraday trading?

    hello everyone,
    Thanks for the valuable share above. How do I use fibonacci pivots indicator for intraday trading? Can someone please the user reference of this indicator?

    #2
    Hello,

    To clarify, are you having trouble using this drawing tool or any of its particular settings?
    Ryan S.NinjaTrader Customer Service

    Comment


      #3
      Hi Ryan,

      No trouble whatsoever. I want to understand how to use this indicator for intraday trading in a strategy. Some user of the original post shared snippet code and it's very helpful.

      Comment


        #4
        Hi Nyman, thanks for writing in.

        The documentation for Fibonacci Pivots can be found here with an example of how to use it:


        Start out by using Print on the values it outputs:

        Code:
        // Evaluates that this is a valid pivot point value
        if (FibonacciPivots(PivotRange.Daily, HLCCalculati onMode.DailyBars, 0, 0, 0, 20).Pp.IsValidDataPoint (0))
        {
            // Prints the current pivot point value
            double valuePp = FibonacciPivots(PivotRange.Dail y, HLCCalculationMode.DailyBars, 0, 0, 0, 20).Pp[0];
            Print("The current Pivots' pivot value is " + valuePp.ToString());
        }
        Kind regards,
        -ChrisL
        Chris L.NinjaTrader Customer Service

        Comment


          #5
          Hi Chris,
          Thanks for the provided link to the documentation. This is exactly what I'm looking and hopefully, it will provide me with answers.

          Comment


            #6
            Does anyone know why I'm getting this error message and how to fix it? I'm using a multi timeframe chart, a daily in the background and a 15 min for entries. Fibonacci Pivot setup as follows:

            else if (State == State.Configure)
            {
            AddDataSeries(Data.BarsPeriodType.Day, 1);
            }
            else if (State == State.DataLoaded)
            {
            FibonacciPivots1 = FibonacciPivots(Closes[1], PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, 0, 0, 0, 20);
            FibonacciPivots1.Plots[0].Brush = Brushes.Goldenrod;
            FibonacciPivots1.Plots[1].Brush = Brushes.DodgerBlue;
            FibonacciPivots1.Plots[2].Brush = Brushes.DodgerBlue;
            FibonacciPivots1.Plots[3].Brush = Brushes.DodgerBlue;
            FibonacciPivots1.Plots[4].Brush = Brushes.Crimson;
            FibonacciPivots1.Plots[5].Brush = Brushes.Crimson;
            FibonacciPivots1.Plots[6].Brush = Brushes.Crimson;
            AddChartIndicator(FibonacciPivots1);

            }
            Attached Files

            Comment


              #7
              Hi Nyman, the Fib Pivots indicator has a setting "Pivot Range". This must be set to Weekly or Monthly for Daily bars.

              Kind regards,
              -ChrisL
              Chris L.NinjaTrader Customer Service

              Comment


                #8
                Hello chris,

                Thanks for your response and help. My issue has been resolved.

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by Barry Milan, Yesterday, 10:35 PM
                7 responses
                19 views
                0 likes
                Last Post NinjaTrader_Manfred  
                Started by AttiM, 02-14-2024, 05:20 PM
                10 responses
                179 views
                0 likes
                Last Post jeronymite  
                Started by ghoul, Today, 06:02 PM
                0 responses
                9 views
                0 likes
                Last Post ghoul
                by ghoul
                 
                Started by DanielSanMartin, Yesterday, 02:37 PM
                2 responses
                13 views
                0 likes
                Last Post DanielSanMartin  
                Started by DJ888, 04-16-2024, 06:09 PM
                4 responses
                13 views
                0 likes
                Last Post DJ888
                by DJ888
                 
                Working...
                X