For example, assuming I'm using a Profile Period = Bars, No. Bars = 60. I would like to be notified at the 60th Bar or at the 1st bar of the Volume Profile.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Volume Profile Alert
Collapse
X
-
Volume Profile Alert
I would like to create an alert that notifies me whenever a new Volume Profile starts forming or the completion of the current volume profile.
For example, assuming I'm using a Profile Period = Bars, No. Bars = 60. I would like to be notified at the 60th Bar or at the 1st bar of the Volume Profile.Tags: None
-
Hi cryfgg, thanks for posting.
The OrderFlow Volume Profile is not supported for access through NinjaScript, so you will need to set a bar number in your script that matches the bar property on the volume profile e.g.
Code:public int barCount = 60; protected override void OnBarUpdate() { if(CurrentBar == 0) { Print("First Bar"); Draw.Dot(this, "Dot"+CurrentBar, false, 0, High[0]+TickSize*5, Brushes.Red); } if(CurrentBar % barCount == 0) { Print("New VP"); Draw.Dot(this, "Dot"+CurrentBar, false, 0, High[0]+TickSize*5, Brushes.Red); } }
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
53 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
26 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
40 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
46 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment