Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Is it possible to stop Indicators with code?

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

    #16
    Hi paruchuriphani,

    Does this mean you would like to prevent orders from being executed if the data is historical?

    This can be done using if (!Historical).

    For example:
    Code:
    if (!Historical && Close[0] > Open[0])
    EnterLong(Close[0]);
    or to prevent all code from executing in the OnBarUpdate, place at the beginning:
    Code:
    if (Historical)
    return;
    Let me know if I can still be of assistance.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #17
      Hi Chelsea,

      Thank you for reply

      i want to prevent all my code from executing in the OnBarUpdate.it means i don't want to plot any downarrows and uparrows in my chart.

      i update my code like this but it is not working.


      DateTime stopDate = DateTime.Parse("2013-03-06 12:25:00").AddDays(0);
      if ((Time[0]) > (stopDate))
      if (Historical)
      return;

      Comment


        #18
        Hi paruchuriphani,

        The code you have now nests the if (Historical) inside the if ((Time[0]) > (stopDate)).
        This will only return if Time[0] is greater than the stopDate AND the data is historical.

        To correct this, try the following:
        Code:
        DateTime stopDate = DateTime.Parse("2013-03-06 12:25:00");
        If (Historical || (Time[0] > stopDate))
        return;
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        46 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        28 views
        0 likes
        Last Post PaulMohn  
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        163 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        98 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        158 views
        2 likes
        Last Post CaptainJack  
        Working...
        X