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 SalmaTrader, 07-07-2026, 10:26 PM
        0 responses
        35 views
        0 likes
        Last Post SalmaTrader  
        Started by CarlTrading, 07-05-2026, 01:16 PM
        0 responses
        20 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 06-17-2026, 10:32 AM
        0 responses
        13 views
        0 likes
        Last Post CaptainJack  
        Started by kinfxhk, 06-17-2026, 04:15 AM
        0 responses
        19 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 06-17-2026, 04:06 AM
        0 responses
        21 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X