Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to access anabettervolume barCode

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

    How to access anabettervolume barCode

    Hi All,

    As I am trying to use anabettervolume indicator as a part of my strategy.

    Different volume types are assigned to different barcode which is defined as IntSeries.

    // when climax bar, enterlong

    if ( bettervolume(period).BarCode == 1)
    EnterLong();

    While the error message shows " Operator '==' cannot be applied to operands of type "NinjaTrader.Data.IntSeries" and int"

    Is anybody have an idea with this issue?

    Thanks

    #2
    Hello qzhang119,

    If the BarCode is defined as a IntSeries, you will need to use a bracket to define what series you want to call. So you may want to do something like:

    Code:
    if ( bettervolume(period).BarCode[0] == 1)
    JCNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    64 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    59 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    62 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    51 views
    0 likes
    Last Post CarlTrading  
    Working...
    X