Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Volume Profile Alert

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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.

    #2
    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);
    }
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    44 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    58 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    35 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    95 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    59 views
    0 likes
    Last Post PaulMohn  
    Working...
    X