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

Need to hit F5 to draw arrows when chart tab is not selected

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

    Need to hit F5 to draw arrows when chart tab is not selected

    They show up in real time if the tab is active but if I go to another chart tab that has the indicator running I need to refresh ninjascript in order for the arrows to plot.

    Does anyone know what I'm doing wrong?

    Here's the code:
    Code:
     protected override void OnBarUpdate()
    {
    if(CrossBelow(RSI(5,1), 80, 1))
    {
    Draw.ArrowDown(this, "tag2"+CurrentBar, true, 0, High[0] + TickSize, Brushes.Red);
    }
    if(CrossAbove(RSI(5,1), 20, 1))
    {
    Draw.ArrowUp(this, "tag1"+CurrentBar, true, 0, Low[0] - TickSize, Brushes.Green);
    }
    }

    #2
    Hi Walter, thanks for posting. Does the indicator run OnEachTick or OnBarClose? I would need you to post a test script that re-creates this because the code you posted looks like it will work in Historical mode.

    Best regards,
    -ChrisL
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Hi Chris.

      It's set to OnBarClose.

      Could it be due to the fact that IsSuspendedWhileInactive was set to true?

      It's set to false in the attached script, I'm currently waiting to see if this does the trick.

      Edit:
      It looks like it was due to that setting after all.

      Attached Files
      Last edited by WalterSkinner; 04-28-2022, 10:46 AM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by bubblegum, 03-18-2024, 10:41 AM
      4 responses
      51 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by kujista, Yesterday, 12:39 AM
      3 responses
      15 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by Yasharandom, 05-04-2024, 07:45 AM
      2 responses
      24 views
      0 likes
      Last Post Yasharandom  
      Started by francesjandujar, Today, 05:15 AM
      0 responses
      4 views
      0 likes
      Last Post francesjandujar  
      Started by francesjandujar, Today, 05:14 AM
      0 responses
      0 views
      0 likes
      Last Post francesjandujar  
      Working...
      X