Category Other  Published on 11/06/2023

Quantum Fx

Description

The Last Robot you will ever need

Purchase your trial version now: 

 


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo.Robots
{
    [Robot(AccessRights = AccessRights.None)]
    public class NewcBot3 : Robot
    {
        [Parameter(DefaultValue = "to buy send me an email and info@sinalgolab.com")]
        public string Message { get; set; }

        protected override void OnStart()
        {
            // To learn more about cTrader Automate visit our Help Center:
            // 

            Print(Message);
        }

        protected override void OnTick()
        {
            // Handle price updates here
        }

        protected override void OnStop()
        {
            // Handle cBot stop here
        }
    }
}

SI
singalgolab

Joined on 07.05.2023

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: New cBot (3).algo
  • Rating: 0
  • Installs: 136
Comments
Log in to add a comment.
No comments found.