Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
buy/ sell pressure indicator
Collapse
X
-
Hello solaris,
It would be the relationship of the Bid and Ask
Click here to read more about PowerVolume IndicatorsBuySellPressure Indicator
The BuySellPressure indicator displays both the current bar's buying and selling pressure as percentage values based on the categorization of trades as buy or sell trades. Trades are categorized in real-time as a buy (at the ask or above) or as a sell (at the bid or below).... Trades in between the market are ignored The BuySellPressure indicator displays both the current bar's buying and selling pressure as percentage values based on the categorization of trades as buy or sell trades. Trades are categorized in real-time as a buy (at the ask or above) or as a sell (at the bid or below).... Trades in between the market are ignored
MatthewNinjaTrader Product Management
-
solaris,
If you have additional questions, I would suggest looking at the core logic of this indicator by going to Tools--> Edit NinjaScript--> BuySellPressure.
Code:if (Close[0] >= GetCurrentAsk()) buys += tradeVol; else if (Close[0] <= GetCurrentBid()) sells += tradeVol;MatthewNinjaTrader Product Management
Comment
-
Hi all..resurrecting this post bcos i'm not sure even after reading the script what += means so I don't understand if the numbers of trades are considered or the volume. Also would the time frame of the chart affect the value that I see on the indicator? many thanks
Comment
-
Hello percma,
Thanks for your post.
From the help guide, on the += assignment, x += y is equivalent to x = x + y. Please see: https://ninjatrader.com/support/help...sic_syntax.htm
Here is a further reference tpo the C# operator: https://docs.microsoft.com/en-us/dot...nment-operator
Yes, the time frame would affect the value, you can observe this by creating two different time frame charts and checking the indicator on each.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment