Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Create a parked STOP order with simple stop loss

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

    Create a parked STOP order with simple stop loss

    I'm new to NT so i'm asking you guys how to park an order until 08:20 a.m.
    It should be a STOP order with 1 target stop loss set as price (not ticks).
    Can you help me with the code?
    Do i have to code a strategy for EVERY order or i can apply it to new orders?
    Thx

    #2
    A strategy can submit many orders. It will execute everything automatically. There are many resources to help you get stated.

    Here is a good jump in point -

    RayNinjaTrader Customer Service

    Comment


      #3
      Ok i'll check all the guide, but as programmer i know that there are many ways to do the same thing and i'm looking for a good start.
      Any piece of code? Anyone?
      All collective2 subscribers would appreciate a little help..... Many trade signals are parked and we don't know how to do it.
      You could think about adding it to basic entry window....
      Thx

      Comment


        #4
        There are also reference samples on our forums that may help you get the ball rolling for various different things you may find of value. Please look at the Reference Sample: http://www.ninjatrader-support.com/v...splay.php?f=30

        Also to throw some ideas out there for you, set a bool variable to true after your trade conditions have been evaluated to true. Now use a time filter along with the bool to determine when to submit your order to market. Take a look at the time filter reference.

        Basically something along the lines of
        if (time is greater than 8:20 && bool is true)
        {
        EnterLongStop();
        }
        Last edited by NinjaTrader_JoshP; 03-14-2008, 12:40 AM.
        Josh P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        55 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        142 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        160 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        96 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        276 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X