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

Get BuySell Volume

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

    Get BuySell Volume

    Hi, I'm trying to get the buy and sell volume in order to build an indicator. (I'm following this link: https://ninjatrader.com/support/help...sellvolume.htm). But when I try to get the buy or the sell volume, it returns me 0 everytime

    Here's my code:

    HTML Code:
            protected override void OnStateChange()
            {
                if (State == State.SetDefaults)
                {
                    Description                                    = @"Enter the description for your new custom Indicator here.";
                    Name                                        = "CummulativeDelta";
                    Calculate                                    = Calculate.OnEachTick;
                    BarsRequiredToPlot                            = 1;
                    IsOverlay                                    = true;
                    DisplayInDataBox                            = true;
                    DrawOnPricePanel                            = true;
                    DrawHorizontalGridLines                        = true;
                    DrawVerticalGridLines                        = true;
                    PaintPriceMarkers                            = true;
                    ScaleJustification                            = NinjaTrader.Gui.Chart.ScaleJustification.Right;
                    //Disable this property if your indicator requires custom values that cumulate with each new market data event.
                    //See Help Guide for additional information.
                    IsSuspendedWhileInactive                    = true;
                    AddPlot(Brushes.Blue, "CumulativeDelta");
                }
                else if (State == State.Configure)
                {
                }
            }
    
            protected override void OnBarUpdate()
            {
                if (Bars == null || CurrentBar == 0)
                    return;
    
                if (Bars.IsLastBarOfSession)
                {
                    cumulativeDelta = 0.0;
                    previousDelta = 0.0;
                }
    
                //double currentDelta = (Volume[0] - Volume[1]) * (Close[0] > Open[0] ? 1 : -1);
                double currentDelta = BuySellVolume().Buys[0] - BuySellVolume().Sells[0];
                Print(BuySellVolume().Buys[0]);
                double deltaDifference = currentDelta - previousDelta;
                cumulativeDelta += deltaDifference;
                previousDelta = currentDelta;
    
                Value[0] = cumulativeDelta;
            }​
    Can anyone give me a hand?

    Thanks

    #2
    Hello speedytrade02,

    Are you testing in realtime? The buy sell volume indicator requires using OnMarketData so it would only produces 0's for historical bars. In realtime you can value as it builds.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Hi Jesse, thanks for the rapid response, I've been using playback connection and now I've changed to simulated data feed and working fine. Thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by halgo_boulder, 04-20-2024, 08:44 AM
      2 responses
      21 views
      0 likes
      Last Post halgo_boulder  
      Started by mishhh, 05-25-2010, 08:54 AM
      19 responses
      6,189 views
      0 likes
      Last Post rene69851  
      Started by gwenael, Today, 09:29 AM
      0 responses
      5 views
      0 likes
      Last Post gwenael
      by gwenael
       
      Started by Karado58, 11-26-2012, 02:57 PM
      8 responses
      14,830 views
      0 likes
      Last Post Option Whisperer  
      Started by Option Whisperer, Today, 09:05 AM
      0 responses
      2 views
      0 likes
      Last Post Option Whisperer  
      Working...
      X