Category Other  Published on 02/03/2021

Trading Hotkeys

Description

By using this cBot you will be able to execute trading operations on your cTrader with your keyboard, you can select any of the keyboard keys.

If you have any question or issue with our product please contact us via our site live chat or if we were offline leave a message, if you post a comment here we will not get any notification and we will not be able to help you.

The uploaded file here doesn't contain anything, its a commercial product and you must use our company website to download it.

Link (Free 14 day trial): 

 


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 Blank : Robot
    {
        protected override void OnStart()
        {
            ChartObjects.DrawText("AlgoDeveloper", "Please download this cBot from AlgoDeveloper.com", StaticPosition.Center, Colors.Red);
        }

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

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


afhacker's avatar
afhacker

Joined on 15.10.2015

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