Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Looking for a Moving Average function that return a single value

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

    Looking for a Moving Average function that return a single value

    I am porting a Tradestation script. And I am looking for a function that efficiently do the moving average:
    AverageFC (Function) AverageFC (Fast Calculation) series function is an Averageof prices or values for some number of bars. It may also called a moving average, since the values are recalculated for every bar.

    AverageFC (Function) Syntax

    AverageFC(Price, Length)
    Returns (Double)

    A numeric value for the current bar.
    Parameters

    Name
    Type
    Description
    [FONT='Courier New',monospace]Price[/FONT]
    Numeric
    Specifies which bar value (price, function, or formula) to use.
    Length
    Numeric
    Sets the number of bars to consider.
    Remarks

    The AverageFC function is often used to smooth the values of functions or indicators.
    AverageFC (fast calculation arithmetic mean) subtracts the oldest value in the list of elements, adds the newest value, and then divides by the number of elements.

    AverageFC (Function) <h4>Examples

    Assigns the 9 bar fast calculation moving average of the Close to Value1, then plots Value1:
    Value1 = AverageFC(Close,9);

    </h4>

    #2
    If you are looking for a simple moving average, then you will want to use our SMA() method.

    More information -http://www.ninjatrader-support.com/HelpGuideV6/MovingAverageSMA.html
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    596 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    343 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    556 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    554 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X