Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Buysellpresure Question
Collapse
X
-
Buysellpresure Question
Hello everyone i am trying to incoperate the Buysellpresure into a strategy however I must be doing it wrong because it only shows the 50% line. I am trying to set a condition so that if the buypresure is greater than 80% for a period of 10 seconds then trigger a long entry and of course the opposite is true for a short entry. I do understand that this indicator in strategy can not be backtested, I plan to experiment on a live basis in simulation mode. If anyone can help it would be great, thanks in advance.Tags: None
-
Hi tomonly23,
This appears to be an issue with the CalculateOnBarClose setting.
First, ensure COBC = false in the strategy.
Then, edit the BuySellPressure indicator, and create a new instance of it under another name. (Tools>Edit NS>Indicator>Right click>Save As>BuySellPressure2) Edit the indicator and completely delete the CalculateOnBarClose = false; line from the Initialize() section. Compile the indicator.
Now, call that new instance of the indicator from your strategy.TimNinjaTrader Customer Service
-
Quick Reply
Thanks for your help Tim,
One further question, I can not seem to figure out how to use the BuySellVolume in a strategy basically I would like to set a condition where if the "Buys" is greater than 80% of the BuySellVolume bar then trigger a long entry and vise versa.
Thanks Tom
Comment
-
Hi tomonly23,
The BuySell Volume indicator can not be accessed programmatically. Alternatively, use the BuySell Pressure indicator for programmatic access.
You can access the BuySellPressure() with something like....
More info at - http://www.ninjatrader-support.com/H...uySellPressureCode:if (BuySellPressure(Close).BuyPressure[0] > 80) do something;
TimNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
68 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
24 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
27 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
54 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment