Category Other  Published on 31/12/2020

RSI Multi-Time Frame with trailing stop

Description

 Enter buy and sell position at over sold and over bought positions basing on two time frames with a trailing stop

Buy the Cbot on https://flutterwave.com/store/grato/octffiygmmgd at UGX 150,000/= or USD 41


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 PremiumCbot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        protected override void OnStart()
        {
            // Please buy the premium bot version on https://flutterwave.com/store/grato/octffiygmmgd
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}


CO
columbus.ug

Joined on 31.12.2020

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