Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Keeping indicator internal values from prior bar

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

    Keeping indicator internal values from prior bar

    I am building a Fourier transform indicator which calculates 50 values for a certain parameter, let's say the parameter is named "Real".
    So there is a Real[0] through Real[49] for the current bar (i.e. bar[0]).
    The calculation needs to reference the prior bar's 50 values for Real (i.e. Bar[1]) as well as the 50 values of Real for the bar before that (bar[2]).

    What NinjaTrader data type would I use to declare Real so that the prior bar's calculation values are available?

    The NinjaTrader DataSeries type
    only stores one value for each bar, not 50.

    Real is not a straight 2 dimensional array, since that would reset every thing to 0 each time the indicator executes.

    I really need sonething like this
    (conceptual example only, might not be correct C#)
    Real[3] = new DataSeries (this);
    to be referenced in code possibly like this
    N = Real[0][25] + Real[1][25] + Real[2][25];
    and possibly loaded something like this
    Real.Set(A*N-1)[0][25];

    I do not need to keep any more than 3 bars back worth of 50 values for each bar.

    If this is the wrong forum for this question, please direct me to the proper forum.

    #2
    Hello,

    Unfortunately this is outside the scope of what we can offer support for on the forums. You may find what you want over on MSDN because this is a more advanced C# issue.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    110 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    59 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    37 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    41 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    78 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X