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

Why is this behavior in BuySellVolume.cs

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

    Why is this behavior in BuySellVolume.cs

    In NT built-in BuySellVolume.cs I see this code:

    Code:
             
     protected override void OnMarketData(MarketDataEventArgs e)
            {
                if(e.MarketDataType == MarketDataType.Last)
                {
                    if(e.Price >= e.Ask)
                        buys += (Instrument.MasterInstrument.InstrumentType == Cbi.InstrumentType.CryptoCurrency ? Core.Globals.ToCryptocurrencyVolume(e.Volume) : e.Volume);
                    else if (e.Price <= e.Bid)
                        sells += (Instrument.MasterInstrument.InstrumentType == Cbi.InstrumentType.CryptoCurrency ? Core.Globals.ToCryptocurrencyVolume(e.Volume) : e.Volume);
                }
            }
     protected override void OnBarUpdate()
            {
                if (CurrentBar < activeBar || CurrentBar <= BarsRequiredToPlot)
                    return;
    
                if (CurrentBar != activeBar)
                {
                    Sells[1] = sells;
                    Buys[1] = buys + sells;
                    buys = 0;
                    sells = 0;
                    activeBar = CurrentBar;
                }
    
                Sells[0] = sells;
                Buys[0] = buys + sells;
            }
    My question is, why `Buys` sets to the SUM of the both variables (`buys+sells`), and why it is not just `buys` ?

    #2
    Hello TazoTodua,

    The plots are layered on top of each other.

    If the sells was not added to the buys and the buy plot was smaller than the sells, then the buys plot would not be visible on the chart because it would be behind the sells.

    Instead, the indicator is made to visibly show both at the same time, with the part that's visible above the sells representing the buys only.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by fwendolynlpxz, Today, 05:19 AM
    0 responses
    3 views
    0 likes
    Last Post fwendolynlpxz  
    Started by traderqz, Yesterday, 12:06 AM
    11 responses
    28 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by PaulMohn, Today, 03:49 AM
    0 responses
    8 views
    0 likes
    Last Post PaulMohn  
    Started by inanazsocial, Today, 01:15 AM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Jason  
    Started by rocketman7, Today, 02:12 AM
    0 responses
    11 views
    0 likes
    Last Post rocketman7  
    Working...
    X