I have a simple request. I'd like to find the last 10 maximum swing high or minimum swing low values. How can I do this in Ninjascript?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Finding last X number of swing low/high
Collapse
X
-
Hello PN720,
Thanks for your post.
I would recommend using the SwingHighBar and SwingLowBar methods of the Swing indicator to identify the BarsAgo indexes for swing highs and lows, and you can supply that Bars Ago index to a Low/High Price Series to reference what that bar value would be.
Some example code for printing out the last 10 instances of Swing highs and the associated High values is included below.
Code:protected override void OnBarUpdate() { if (CurrentBar < 500) return; ClearOutputWindow(); Print(Swing(10).SwingHighBar(0, 1, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 1, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 2, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 2, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 3, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 3, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 4, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 4, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 5, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 5, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 6, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 6, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 7, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 7, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 8, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 8, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 9, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 9, CurrentBar)]); Print(Swing(10).SwingHighBar(0, 10, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 10, CurrentBar)]); }
We look forward to assisting.
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
24 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
120 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
63 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment