Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Explanation in Help file appears incorrect.

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

    Explanation in Help file appears incorrect.

    In the Help Guide
    Under Tip: " In the above example(below), we check for our breakout long signal but we also want to make sure that the breakout bar saw 50% or more of its volume hit the ask or higher."

    Below is the code they are referencing and it does look for greater than 50, But there is nothing in BuySellVolume to calculate 50%. It only outputs for Buys[] ==> buys +sells
    and for Sells[] ==>sells.

    protected override void OnBarUpdate()
    {
    // Looking for a long breakout signal
    if (Close[0] > DonchianChannel(20).Upper[5])
    {
    // !! See notes below !!
    if (State == State.Historical || BuySellVolume().Buys[0] > 50)
    EnterLong();
    }
    }

    #2
    Hello JerryWar,

    I will forward this information to our development.

    Once I have more information I will post what I find in this thread.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    117 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    166 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    85 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    130 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    88 views
    0 likes
    Last Post PaulMohn  
    Working...
    X