Change ArrayList semantics to List<> semantics in the example.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
"Array" instead of "Dataseries"
Collapse
X
-
The simplest, quickest and final solution to my requirement is using a traditional ARRAY.
Here, all the basic steps done in order to be able to work properly as needed
1. Declaring ARRAY
#region Variables
double[] acu = new double[initial];
#endregion
2. Updating the Array dimension that actually will be used
protected override void OnStartUp()
{
acu = new double[oscillation+1];
}
3. After use if "reseting or clearing" the Array is needed, then proceed with:
Array.Clear(acu, 0, wpoint.Length);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
152 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
89 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
131 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
127 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment