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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
66 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
36 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
59 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment