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;
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Why is this behavior in BuySellVolume.cs
Collapse
X
-
Why is this behavior in BuySellVolume.cs
In NT built-in BuySellVolume.cs I see this code:
My question is, why `Buys` sets to the SUM of the both variables (`buys+sells`), and why it is not just `buys` ?Code:Tags: None
-
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
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
83 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
45 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
65 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
57 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment