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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        149 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        84 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        129 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        125 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        102 views
        0 likes
        Last Post CarlTrading  
        Working...
        X