Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Size Filter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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.

    #2
    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:

    Code:
    if(Volume[0] > MyInputName)
    We have further reading on this topic here: https://ninjatrader.com/support/help...d_input_pa.htm



    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by terofs, Yesterday, 04:18 PM
    1 response
    21 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by CommonWhale, Today, 09:55 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by Gerik, Today, 09:40 AM
    2 responses
    7 views
    0 likes
    Last Post Gerik
    by Gerik
     
    Started by RookieTrader, Today, 09:37 AM
    2 responses
    12 views
    0 likes
    Last Post RookieTrader  
    Started by alifarahani, Today, 09:40 AM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X