Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Size Filter
Collapse
X
-
Size Filter
How do I create a size filter? For example I can use the default buysellvolume indicator but add code to only show volume that goes through between x-xx.Tags: None
-
Hello wavestrader,
Thank you for the question.
The easiest way to generate syntax for inputs would be to first create a dummy indicator and have the wizard create the inputs for you so that you can copy and paste the code to the other script.
To do that, you can open the NinjaScript editor and generate a new indicator. When the wizard comes up, give it any name and then go to the "Input Parameters" tab. Click Add and then a window will bring up the possible options for inputs. Likely an int would work for this purpose.
After making all the inputs you want such as high and low volume inputs, click generate to see the code. Near the bottom of the file there is a Properties region where the new properties code will be. You can remove the dummy indicator after doing this and getting the needed syntax.
This would give you the inputs, as for how those are used in the logic you would just use the inputs name:
We have further reading on this topic here: https://ninjatrader.com/support/help...d_input_pa.htmCode:if(Volume[0] > MyInputName)
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
546 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment