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

enter a trade 5 seconds before the 5 minute candle closes.

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

    enter a trade 5 seconds before the 5 minute candle closes.

    how can I in Strategy wizard tell Ninjatrader once the conditions are met that it should enter long (or Short) 5 seconds before the 5 minute candles closes. is there a code i can just paste inside to make this happen.

    #2
    Hi wallsteetking,

    This is unfortunately not available with the strategy wizard only. You will need to work in code and can take advantage of C# built in date / time classes. The following link can help generally work with these:


    To do this would require comparisons using bar's time stamp with Time[0], and your computer clock with DateTime.Now.
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Hello Ryan thank you for helping me with this problem. I dont think I am doing this correctly can you take a look at it.

      Code:
      if (Time[0].Date == DateTime.4,53,0)
      {
      EnterLong(DefaultQuantity, "");
      }
      I looked at the examples none of them use comparisons can you help me with this.

      Comment


        #4
        Hello wallstreetking,
        Thanks for writing in and I am replying for Ryan.

        Please try the below code to enter in a position 5 seconds before a bar closes.
        Code:
        if (DateTime.Now >= Time[0].AddSeconds(-5))
        {
        	//do something.
        }
        The above code will work in realtime only.

        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Aviram Y, Today, 05:29 AM
        0 responses
        4 views
        0 likes
        Last Post Aviram Y  
        Started by quantismo, 04-17-2024, 05:13 PM
        3 responses
        27 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by ScottWalsh, 04-16-2024, 04:29 PM
        7 responses
        36 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by cls71, Today, 04:45 AM
        0 responses
        6 views
        0 likes
        Last Post cls71
        by cls71
         
        Started by mjairg, 07-20-2023, 11:57 PM
        3 responses
        219 views
        1 like
        Last Post PaulMohn  
        Working...
        X