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?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How do I use fibonacci pivots indicator for intraday trading?
Collapse
X
-
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:
Kind regards,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()); }
-ChrisL
- Likes 1
Comment
-
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);
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
29 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
21 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
184 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
337 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
262 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment