Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Instance variable for FAMA MA

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

    Instance variable for FAMA MA

    Is it possible to do something like the following

    Code:
    [COLOR=Black]private[/COLOR] SMA mySma;
    protected override void OnStateChange()
    {
       // when the indicator begins processing
       // save an instance of the SMA indicator with the desired input   
       if (State == State.Historical)
       {
          mySma = SMA(20);
       }
    }
    for FAMA moving average? If yes, how.

    #2
    Hello Zeos6,

    Thank you for your note.

    Code:
    private FMA myFma;
    
     if (State == State.Historical)
       {
          myFma= FMA(20);
       }
    Does the above work?

    If not, would you be able to provide a copy of the FMA indicator or provide a link to it?

    I look forward to your reply.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Hi AlanP,
      Am I missing something here? Your own documentation states the following:

      Syntax

      MAMA(double fastLimit, double slowLimit)
      MAMA(ISeries<double> input, double fastLimit, double slowLimit)

      Returns MAMA value
      MAMA(double fastLimit, double slowLimit)[int barsAgo]
      MAMA(ISeries<double> input, double fastLimit, double slowLimit)[int barsAgo]

      Returns Fama (Following Adaptive Moving Average) value
      MAMA(double fastLimit, double slowLimit).Fama[int barsAgo]
      MAMA(ISeries<double> input, double fastLimit, double slowLimit).Fama[int barsAgo]


      How does your suggestion relate to the documentation?

      Comment


        #4
        Hello Zeos6,

        Mentioning the Mesa Adaptive moving average would have been helpful. Fama is part of the MAMA like Diff is to MACD.

        MAMA myMAMA;

        else if (State == State.Configure)
        myMAMA= MAMA(1, 2);

        OnBarUpdate()
        Print(myMAMA.Fama[0]);

        Please let us know if you need further assistance.
        Alan P.NinjaTrader Customer Service

        Comment


          #5
          Thanks AlanP.
          The issue here is that MAMA is an indicator and Fama is a series. I will work with this.

          Comment

          Latest Posts

          Collapse

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