Category Trend  Published on 20/05/2023

Update: SuperBot - Gain 100% per Year.

Description

Watch Real Backtest of the SuperBot: 

Real Backtest - Real Profit


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 GetUserId : Robot
    {
       
        protected override void OnStart()
        {
            
            Print(this.Account.UserId);
            var result = MessageBox.Show("To Buy SuperBot with just only 100$ or need any support Please Contact Us (email: kamsamita.com@gmail.com or telegram @TanKhet)", "Date Expired",MessageBoxButton.OK,MessageBoxImage.Warning, MessageBoxResult.OK);
               
               Stop();
        }

        protected override void OnTick()
        {
           
           // Contact me if you want buy the Bot or anything for Support. 24/7
           // Contact me : @TanKhet (telegram) or kamsamita.com@gmail.com to start setup SuperBot
           // Thanks
        }

        protected override void OnStop()
        {
            
        }
    }
}

LE
leokao.com

Joined on 09.11.2022

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Get _UserID_For_SuperBot.algo
  • Rating: 0
  • Installs: 832
Comments
Log in to add a comment.
JI
jim.tollan · 1 year ago

yes, i made that mistake early on and found that switching to raw tick data required a pretty major revision on my optimisations and to an extent, my logic!! just be aware.

JA
jaydcrowe1989 · 1 year ago

For the back testing video to be accurate you need to run this on tick data and not the 1 minute candles!