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

Limit as input

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

    Limit as input

    I'm running a strategy now with the basic market entry, I'm wondering if its possible to have a input option to change the order from market to limit? and if so would it be possible to have an input entry for number of ticks off the limit example input limit, input 5 ticks. so if my strategy was entering long it would put an order out to be buying at $11.45 if the bid was $11.50
    Thanks

    #2
    pistolpete,

    You could create a bool parameter and then code two branches for your code.

    Code:
    if (someBool == true)
    {
         EnterLongLimit(...);
    }
    else if (someBool == false)
    {
         EnterLong();
    }
    Same applies for your tick offset. You would just create an int parameter to do that.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      I want it as input not just in the code.
      Is it possible to have input limit - yes/no?

      Comment


        #4
        pistolpete,

        You make the parameter as a user input and then you use it in your code. Please see the SMA indicator for an example of how to make an int input. Making a bool one is done exactly the same way, but just as a bool instead of an int.
        Josh P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by DJ888, 04-16-2024, 06:09 PM
        4 responses
        11 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by terofs, Today, 04:18 PM
        0 responses
        5 views
        0 likes
        Last Post terofs
        by terofs
         
        Started by nandhumca, Today, 03:41 PM
        0 responses
        5 views
        0 likes
        Last Post nandhumca  
        Started by The_Sec, Today, 03:37 PM
        0 responses
        3 views
        0 likes
        Last Post The_Sec
        by The_Sec
         
        Started by GwFutures1988, Today, 02:48 PM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Working...
        X