Free 3 EMA MTF (Multi-timeframe)
 0
  5
  7206
26 Mar 2015, 00:52
3 EMA MTF (Multi-timeframe) using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC)] public class EMAMTF : Indicator { [Parameter(DefaultValue = 14)]...
Free Tema MTF (Multi-timeframe)
 0
  0
  3780
25 Mar 2015, 01:33
Triple Exponential Moving Average, or TEMA with Multi-timeframe indicator used: /algos/indicators/show/15 using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC)] public class TEMAMTF :...