Indicators

Free enola
 0
  0
  101
09 May 2024, 22:04
Free mtm
 0
  0
  83
07 Jun 2024, 23:37
using cAlgo.API;using cAlgo.API.Indicators;using cAlgo.API.Internals;using System;using System.Linq;namespace cAlgo{   [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]   public class MomentumIndicator : Indicator   {       [Parameter("N Value", DefaultValue = 60, MinValue...
Free Scored Ma MultiTimeFrame
 0
  5
  47
03 Jul 2024, 22:02
This indicator uses the scoring strategy to define a signal. If a bar is above a moving average (MA), the score is +1, and if a bar is below a...