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

using variables form a prior bar's calulations

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

    using variables form a prior bar's calulations

    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 PaulMohn, Today, 12:36 PM
    0 responses
    2 views
    0 likes
    Last Post PaulMohn  
    Started by love2code2trade, 04-17-2024, 01:45 PM
    4 responses
    38 views
    0 likes
    Last Post love2code2trade  
    Started by alifarahani, Today, 09:40 AM
    2 responses
    14 views
    0 likes
    Last Post alifarahani  
    Started by junkone, Today, 11:37 AM
    3 responses
    20 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by frankthearm, Yesterday, 09:08 AM
    12 responses
    44 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X