Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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);
    }
    }
    Chris L.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by alifarahani, Today, 09:40 AM
    6 responses
    36 views
    0 likes
    Last Post alifarahani  
    Started by Waxavi, Today, 02:10 AM
    1 response
    17 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by Kaledus, Today, 01:29 PM
    5 responses
    14 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by Waxavi, Today, 02:00 AM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by gentlebenthebear, Today, 01:30 AM
    3 responses
    17 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X