What I want to do is read into the array five different moving averages, etc. and their different types. Example 20 SMA, LinReg 9 and so on. This requires 2D array which holds the string "Type" and double "Value". I then want to sort them from the lowest to highest for further processing. My question is what is the easiest way to do this? Could I use the List method or would I need to use the Sort().
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Array with string and double for sorting
Collapse
X
-
Array with string and double for sorting
I am new at NT programming, so this is fairly basic.
What I want to do is read into the array five different moving averages, etc. and their different types. Example 20 SMA, LinReg 9 and so on. This requires 2D array which holds the string "Type" and double "Value". I then want to sort them from the lowest to highest for further processing. My question is what is the easiest way to do this? Could I use the List method or would I need to use the Sort(). -
JoydeepNinjaTrader Customer Service
-
Use a SortedDictionary.Originally posted by profitsareking View PostI am new at NT programming, so this is fairly basic.
What I want to do is read into the array five different moving averages, etc. and their different types. Example 20 SMA, LinReg 9 and so on. This requires 2D array which holds the string "Type" and double "Value". I then want to sort them from the lowest to highest for further processing. My question is what is the easiest way to do this? Could I use the List method or would I need to use the Sort().
ref: http://msdn.microsoft.com/en-us/library/f7fta44c.aspxLast edited by koganam; 01-16-2013, 05:02 PM.
Comment
-
Hi and thanks to both NinjaTrader_Joydeep and koganam.
I decided to use SortedList since SortedDisctionary requires all unique keys else throws an exception. Since, in a rare case, two moving averages could have the same value when crossing, this would require exception handling which complicates things.
I decided to use the sample at http://msdn.microsoft.com/en-us/library/cxb97few.aspx
I am getting compile error:
The type or namespace name 'SortedList' could not be found (are you missing a using directive or an assembly reference?)
Can you give me quick heads up what is that about? Many thanks
Comment
-
I still get the same error and in addition I get:
Using the generic type 'System.Collections.Generic.SortedList<TKey,TValue >' requires '2' type arguments
Comment
-
Hello profitsa,reking
To assist you further can you please send a toy NinjaScript code* replicating the behavior to support[AT]ninjatrader[DOT]com
Please append Attn:Joydeep in the subject line of the email and give a reference of this thread in the body of the email.
I look forward to assisting you further.
*The "toy" just means something that is a stripped down version that isn't necessarily the whole logic. It makes things easier to rout out.JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
331 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
550 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment