Update: SuperBot - Gain 100% per Year. free

by leokao.com in category Trend at 20/05/2023
Description

Watch Real Backtest of the SuperBot: 

Real Backtest - Real Profit

Warning! Executing the following cBot may result in loss of funds. Use it at your own risk.
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
Language: C#
Trading Platform: cAlgo
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()
        {
            
        }
    }
}
Comments

jaydcrowe1989 - May 23, 2023 @ 12:51

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

jim.tollan - May 23, 2023 @ 16:55

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.

0