Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Data Storage Structure ?
Collapse
X
-
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.) -
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.
-
-
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.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
315 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
253 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment