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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
39 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
289 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
289 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
135 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
96 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment