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

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 TraderG23, 12-08-2023, 07:56 AM
    9 responses
    382 views
    1 like
    Last Post Gavini
    by Gavini
     
    Started by oviejo, Today, 12:28 AM
    0 responses
    1 view
    0 likes
    Last Post oviejo
    by oviejo
     
    Started by pechtri, 06-22-2023, 02:31 AM
    10 responses
    125 views
    0 likes
    Last Post Leeroy_Jenkins  
    Started by judysamnt7, 03-13-2023, 09:11 AM
    4 responses
    59 views
    0 likes
    Last Post DynamicTest  
    Started by ScottWalsh, Yesterday, 06:52 PM
    4 responses
    36 views
    0 likes
    Last Post ScottWalsh  
    Working...
    X