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

saving last bar data using stram writer

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

    saving last bar data using stram writer

    Dear friends.
    I have create strategy which save last bar data to file (only one row OHCL data), but it working slow and unstable. I move code from this strategy to indicator and indicator works better. Than I find sample stream writer indicator which write ohcl data to file. But I need only one row in file only last bar data, I don't need all history from chart. So how should I fix stream writer indicator for saving only last bar data?

    #2
    daglas, using System IO here would be liklely better performing for your task - http://www.ninjatrader.com/support/f...ad.php?t=48902

    You can simply move the if (Historical) return; statement you see, so it would only save current realtime data going forward for example, currently it would store all historical data as well in the sample and then output the RT saved data to the output window.
    BertrandNinjaTrader Customer Service

    Comment


      #3
      I prefer such solution
      if (CurrentBar>Bars.Count-100)
      {

      File.WriteAllText(path, Open[0]);

      }

      Comment


        #4
        Now I have such trouble. If my program which periodically read this file cause collision (read the file when nt7 try to save data to this file), indicator stops and I have error message in log windows. Something like indicator can't access to file ****. How can I write some exception in body of indicator, to retry reading file after collision or something also which help to write data even after errors.

        Comment


          #5
          daglas, you would need to look into locking the file to ensure no concurrent access is possible - for ideas you can check into this link - http://stackoverflow.com/questions/7...ed-environment
          BertrandNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by andrewtrades, Today, 04:57 PM
          1 response
          7 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by chbruno, Today, 04:10 PM
          0 responses
          5 views
          0 likes
          Last Post chbruno
          by chbruno
           
          Started by josh18955, 03-25-2023, 11:16 AM
          6 responses
          436 views
          0 likes
          Last Post Delerium  
          Started by FAQtrader, Today, 03:35 PM
          0 responses
          7 views
          0 likes
          Last Post FAQtrader  
          Started by rocketman7, Today, 09:41 AM
          5 responses
          19 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Working...
          X