Category Trend  Published on 01/11/2020

Flexible Exponential Moving Average

Description

In contrast to the normal exponential smoothing moving average, which can only use an integer period, this indicator uses any positive number, allowing for flexible, sensitive, and streamlined period setting.

 

If you have any questions or problems, please feel free to contact us in the comments!!!

 

Notice:It does not guarantee any particular outcome or profit of any kind. Please enjoy trading at your own risk.

 

Download from here for free

© 2020, Taro Yamada, taro.yamada.forex@gmail.com

 

We can also take orders for algorithm development.

Please feel free to contact us.


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class FEMALink : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("FEMALink", "Download for FREE: https://gum.co/oPzWKo", StaticPosition.Center, Colors.Red);
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }
    }
}


AK
akamanbow3

Joined on 17.09.2020

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: FEMALink.algo
  • Rating: 0
  • Installs: 1209
Comments
Log in to add a comment.
DR
drakelu21 · 1 year ago

The flexible exponential moving average (FEMA) is a type of moving average that allows the user to define the time period over which the moving average is calculated nerdle. This can be very useful when calculating moving averages on data that changes rapidly, such as stock prices. Octordle