Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Data Series

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

    Data Series

    Hi guys, anyway to set the data series to 1 second, but days to load to 0... We need the data series to be set to 1 second but we don't want to load any data at the startup...

    Thank you

    dawid

    #2
    Hello Dawid,

    Thank you for your post.

    You can add a Historical check to ensure nothing is ran on historical data:
    Code:
    protected override void OnBarUpdate() 
    { 
        // Only run on real-time data
        if (Historical) 
             return;
    For information on Historical please visit the following link: http://www.ninjatrader.com/support/h...historical.htm

    Please let me know if I may be of further assistance.

    Comment


      #3
      Thanks for the reply!

      I have a strategy that reads parameter settings from a text file. I was wondering what would be the best way to get the ninja script to read my file every x seconds or on every bar update - that is why need have the data series set to 1 second but starting the strategies is taking very long, especially on slower machines...
      After the file is read script should update orders (offset, quantity etc.). The script works fine in Simulated Data Feed environment, but i have some issues when connected to my broker.

      Comment


        #4
        Hello Dawid,

        Thank you for your response.

        If you wanted to read form the file on every bar update use CalculateOnBarClose = false. For information on CalculateOnBarClose please visit the following link: http://www.ninjatrader.com/support/h...onbarclose.htm

        Please let me know if I may be of further assistance.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        598 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        343 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        556 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        555 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X