There is highestbar() formula, but I don't see the "timeframe" parameter. If I want to use this indicator for intraday (e.g. 5min chart), what API can I use to get the highest and lowest price the last 3 days?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
3-day rolling pivot
Collapse
X
-
3-day rolling pivot
Hi. I need to create an indicator for 3-day rolling pivot (highest of last 3 days minus lowest of last 3 days, divided by close of last day)
There is highestbar() formula, but I don't see the "timeframe" parameter. If I want to use this indicator for intraday (e.g. 5min chart), what API can I use to get the highest and lowest price the last 3 days?Tags: None
-
Hi ssg10 - you can take a look at this script from our sharing - http://www.ninjatrader-support2.com/...id=131&catid=1
-
I Need It To
I need the three day rolling pivot as well, anyone have it by chance?
The formula you posted is incorrect for it though, it is
3 day high + 3 day low + third day close = *
3 day high + 3 day low = *
subtract the two above figures to get the pivot diff which = *
then add the pivot diff to the 3 day high + 3 day Low + 3rd day cloe for the upper pivot
Subtract the pivot diff from the same = the pivot low
any one have it or can make it? I really need this indicator right now...
TIA
Comment
-
Unfortunately I'm not aware of a script for this, as a last resort you can contact those NinjaScript consultants - http://www.ninjatrader.com/webnew/pa...injaScript.htm
Comment
-
My Code Is Incorrect
Thanks for the reply,
My code is incorect also,
this
3 day high + 3 day low + third day close = *
3 day high + 3 day low = *
Needs to be:
3 day high + 3 day low + third day close divided by 3 = *
3 day high + 3 day low divided by 2 = *
forgot to add the "divided by"
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
578 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