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: 1345
- Modified: 13/10/2021 09:54
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
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