Category Trend  Published on 07/03/2021

Super-EA

Description

Super-EA was developed in early 2021, initially on cTrader platform and then rewritten to Metatrader-5.

This EA uses a trend follower strategy by a complex algo that detects the trend on different time frames and catches the momentum for the best entry.

Optimizations and backtests were made for both platforms on EURUSD with real-time ticks from 01.01.2020 to 31.12.2020.

For more info please visit: www.algoguru.hu


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

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class ctdn : Robot
    {
        [Parameter(Group = "Setup",DefaultValue = "For more info")]
        public string s1 { get; set; }
        [Parameter(Group = "Setup",DefaultValue = "please visit")]
        public string s2 { get; set; }
        [Parameter(Group = "Setup",DefaultValue = "www.algoguru.hu")]
        public string s3 { get; set; }

        protected override void OnStart()
        {
        string s = string.Format("{0} {1} {2}", s1, s2, s3); 
            
            Chart.DrawStaticText("headline", s, VerticalAlignment.Top, HorizontalAlignment.Left, Color.Red);
        }


    }
}

AlgoGuru's avatar
AlgoGuru

Joined on 29.11.2018

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: cBotwithsource.algo
  • Rating: 5
  • Installs: 1097
Comments
Log in to add a comment.
No comments found.