Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Shortcut?
Collapse
X
-
I tried using the following snippet I copied within the OnBarUpdate() section of my indicator see if it would print out the pivot point value, but nothing happened. Do I need to declare a variable or initialize it first? I would eventually like to use this value in a strategy.
// Prints the current pivot point value
double value = Pivots(PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, High[0], Low[0], Close[0], 20).PP[0];
Print("The current Pivots' pivot value is " + value.ToString());
Comment
-
Why would you supply user defined values if you set the method to CalcFromIntradayData - this would not fit together, if you wish to put your own values for HLC in, please use HLCCalculationMode.UserDefinedValues
Or leave on using intraday data, but then enter 0's for the user defined values, this should give you a print then as well.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
579 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment