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 quantismo, 04-17-2024, 05:13 PM
    3 responses
    25 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by ScottWalsh, 04-16-2024, 04:29 PM
    7 responses
    34 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by cls71, Today, 04:45 AM
    0 responses
    5 views
    0 likes
    Last Post cls71
    by cls71
     
    Started by mjairg, 07-20-2023, 11:57 PM
    3 responses
    214 views
    1 like
    Last Post PaulMohn  
    Started by TheWhiteDragon, 01-21-2019, 12:44 PM
    4 responses
    547 views
    0 likes
    Last Post PaulMohn  
    Working...
    X