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
Joined on 29.11.2018
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: cBotwithsource.algo
- Rating: 5
- Installs: 1097
- Modified: 13/10/2021 09:54
Warning! Running cBots downloaded from this section may lead to financial losses. Use them at your own risk.
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.
No comments found.