Category Other  Published on 21/06/2021

M1 H1 BTC Scalping

Description

This bot help you run with profit, with 3000$ just run with volume 0.01, on M1, H1 bar, BTCUSD

 To download FREE the demo Version please visit: https://gum.co/dDqQL

To download the PRO Version please visit:  https://gum.co/DsRFD

  with source code https://gum.co/BXjwUM

  Contacts please write to: nghiand.amz@gmail.com

 


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 BTCScalpingOnline : Robot
    {

        protected override void OnStart()
        {
            // Put your initialization logic here
            if (RunningMode == RunningMode.RealTime || RunningMode == RunningMode.VisualBacktesting)
            {
                Chart.DrawStaticText("download", "\n\n\n\n To download FREE the demo Version please visit: https://gum.co/dDqQL  \n\nTo download the PRO Version please visit:  https://gum.co/DsRFD " + "\n\n with source code https://gum.co/BXjwUM \n\n  Contacts please write to: nghiand.amz@gmail.com", VerticalAlignment.Top, HorizontalAlignment.Center, Color.Yellow);
            }


        }

        protected override void OnBar()
        {

        }

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

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


nghiand.amz's avatar
nghiand.amz

Joined on 06.07.2020

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