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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
175 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
130 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
210 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment