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

Data Storage Structure ?

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

    Data Storage Structure ?

    I've created some synthetic instruments on NT 7, and done so with reasonable success. Any suggestion as to what is the best structure in which to store that data? (eg, array, SortDictionary<>, DataTable(), etc.)

    #2
    Hello spottysallrite,

    Thank you for the post.

    If you do not need a particular ordering in the data, you could use a HashSet<T>(), it was designed for high-performance set operations. Keep in mind that a set does not hold duplicate items.

    https://msdn.microsoft.com/en-us/lib...=vs.110).aspx- -HashSet<T>

    If you do need ordering I would say a List<T> which is has a very fast BinarySearch method (because it is already sorted):
    https://msdn.microsoft.com/en-us/lib...v=vs.110).aspx - List<T>

    Please let me know if I may be of any further assistance.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Those have only one dimension, so why not DataTable() ?

      Comment


        #4
        Hello spottysallrite,

        Thanks for the reply.

        Your initial suggestions would work just fine as well. I was simply suggesting some of the fastest structures that C# has to offer. Really, any data structure should be fast enough for create/read/update/delete operations of your program.

        Please let us know if you have any questions.
        Chris L.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Max238, Today, 01:28 AM
        2 responses
        26 views
        0 likes
        Last Post NinjaTrader_ChristopherJ  
        Started by Shansen, 08-30-2019, 10:18 PM
        25 responses
        949 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by JonesJoker, 04-22-2024, 12:23 PM
        8 responses
        41 views
        0 likes
        Last Post JonesJoker  
        Started by timko, Today, 06:45 AM
        0 responses
        3 views
        0 likes
        Last Post timko
        by timko
         
        Started by Waxavi, 04-19-2024, 02:10 AM
        2 responses
        39 views
        0 likes
        Last Post poeds
        by poeds
         
        Working...
        X