danieleyube's avatar
Eyube Ephraim
XAUUSD_SCALPER
Eyube Ephraim's avatar

Info

Username:danieleyube
Name:Eyube Ephraim
Member since: 26 Jan 2021
Country:Nigeria

Favorite symbols:

GBPUSD

About

XAUUSD freak, I created a bot that can scalp 20% of your account for you everyday trading Gold. No matter the account size.

Signature

XAUUSD_SCALPER

Last Algorithm Comments

@LONG TERM INVESTORS GOLD BOT(FREE):  22 Mar 2022, 07:32


Download now updated, you can get the actual file right away.

@LONG TERM INVESTORS GOLD BOT(FREE):  15 Jan 2022, 09:38


Thank you.

@LONG TERM INVESTORS GOLD BOT(FREE):  15 Jan 2022, 09:28


A guy from Germany is currently using it, it's by choice not by force.

@LONG TERM INVESTORS GOLD BOT(FREE):  15 Jan 2022, 09:27


@CT Good, it's by choice, there are other bots in Ctrader, you can download any and use. am not cajoling you to download the bot.

@LONG TERM INVESTORS GOLD BOT(FREE):  15 Jan 2022, 09:11


@CT Good, Yes! am a Nigerian.

@LONG TERM INVESTORS GOLD BOT(FREE):  15 Jan 2022, 09:09


Bot for other currency pair a now available, contact me on whatsapp for screenshot/demonstration.

@LONG TERM INVESTORS GOLD BOT(FREE):  15 Jan 2022, 09:07


it's free, check the instruction in the description.

the instruction is contact me on whatsapp so i can send it to you directly via private chat and you also have the opportunity to ask me any question regarding it.

@LONG TERM INVESTORS GOLD BOT:  12 Oct 2021, 13:49


@echonnie... Am sorry for the inconvenience. I don't have a demo version for the bot, but if you want a live display of the backtesting you can reach me on WhatsApp where I can give you a screen recording of any backtesting you want. Thanks.

@LONG TERM INVESTORS GOLD BOT:  11 Oct 2021, 22:31


If you want a screen recording on the backtesting, just request on WhatsApp with the number in the screenshot.

@LONG TERM INVESTORS GOLD BOT:  06 Oct 2021, 06:21


@boonmecarlton2 what's the mypascoconnect all about?

@LONG TERM INVESTORS GOLD BOT:  03 Oct 2021, 17:12


It has been back tested on a $100 account size and the result and drawdown are quite considerable

@LONG TERM INVESTORS GOLD BOT:  02 Oct 2021, 01:46


That number works on WhatsApp as well..

@Dragon Gold EA 600% 1 year:  21 Sep 2021, 17:56


not enough info... there should be image of draw down and about 3-4years backtesting

@TrendFollower cBot:  12 Sep 2021, 18:37


@Pb75 you have to pay for it then he will send you the actual bot, this is just a showcase.

@TrendFollower cBot:  12 Sep 2021, 18:35


nice bot i suppose but your backtesting period is not enough. it should be able to withstand a whole year backtesting before anyone can actually dump hard earned money on it.

@Advanced Ichimoku Kinko Hyo:  26 Jan 2021, 16:17


nice work.

it's a bit confusing though .

Last Forum Posts

@Cbot renko chart entry point:  07 Feb 2022, 14:52


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 NewcBot : Robot
    {
        [Parameter("Trade Size", DefaultValue = 1000, MinValue = 0.01)]
        public double Size { get; set; }

        [Parameter("Stop Loss (Pips)", DefaultValue = 15, MinValue = 2)]
        public int SL { get; set; }

        [Parameter("Take Profit (Pips)", DefaultValue = 35, MinValue = 2)]
        public int TP { get; set; }

        protected override void OnStart()
        {
            ExecuteMarketOrder(TradeType.Buy, SymbolName, Size, SymbolName, 10, 10);
        }

        protected override void OnTick()
        {
            // It iterates over all positions
            foreach (var position in Positions)
            {
                // if position is 5 pips in profit
                if (Positions[0].Pips == 5)
                {
                    ExecuteMarketOrder(TradeType.Sell, SymbolName, Size, SymbolName, 0, 10);
                }
                // if position is 5 pips in lose
                else if (Positions[0].Pips == -5)
                {
                    ExecuteMarketOrder(TradeType.Buy, SymbolName, Size, SymbolName, 0, 10);
                }
            }
        }

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

is anything Wrong with the above code?

@Cbot renko chart entry point:  07 Feb 2022, 10:26


amusleh said:

Hi,

You can use Position Pips property to get the current Pips amount of Position, ex:

using cAlgo.API;

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.EasternStandardTime, AccessRights = AccessRights.FullAccess)]
    public class AUDJPY : Robot
    {
        [Parameter("Trade Size", DefaultValue = 1000, MinValue = 0.01)]
        public double Size { get; set; }

        [Parameter("Stop Loss (Pips)", DefaultValue = 15, MinValue = 2)]
        public int SL { get; set; }

        [Parameter("Take Profit (Pips)", DefaultValue = 35, MinValue = 2)]
        public int TP { get; set; }

        protected override void OnStart()
        {
            ExecuteMarketOrder(TradeType.Buy, SymbolName, Size, SymbolName, 0, 10);
        }

        protected override void OnTick()
        {
            // It iterates over all positions
            foreach (var position in Positions)
            {
                // if position is 5 pips in profit
                if (position.Pips == 5)
                {
                    // Do something here, ex: execute a new order
                }
                // if position is 5 pips in lose
                else if (position.Pips == -5)
                {
                    // Do something here, ex: execute a new order
                }
            }
        }
    }
}

Thank you so much sir!  I'll try it out and give you feedback.

@Cbot renko chart entry point:  06 Feb 2022, 19:59


Whenever a trade move from the entry point +5 or -5pips it should enter a new trade, please help i don't know how to go about it.

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.EasternStandardTime, AccessRights = AccessRights.FullAccess)]
    public class AUDJPY : Robot
    {
        [Parameter("Trade Size", DefaultValue = 1000, MinValue = 0.01)]
        public double Size { get; set; }

        [Parameter("Stop Loss (Pips)", DefaultValue = 15, MinValue = 2)]
        public int SL { get; set; }

        [Parameter("Take Profit (Pips)", DefaultValue = 35, MinValue = 2)]
        public int TP { get; set; }


        protected override void OnStart()
        {
            ExecuteMarketOrder(TradeType.Buy, SymbolName, Size, SymbolName, 0, 10);
        }

        protected override void OnTick()
        {
            var position2 = Positions[0];
            if (position2.EntryPrice - Symbol.Bid == -0.0005)
            {
                ExecuteMarketOrder(TradeType.Sell, SymbolName, Size, SymbolName, 0, 10);
            }

            if (position2.EntryPrice - Symbol.Bid == 0.0005)
            {
                ExecuteMarketOrder(TradeType.Buy, SymbolName, Size, SymbolName, 0, 10);
            }
        }


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

@Cbot renko chart entry point:  18 Jun 2021, 13:52


I built a ctrader bot that is working well but am unable to program it to enter trade at exactly the close of a brick or formation of a new one(am using renko chart).

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.

No uploaded.

Warning! Executing cBots downloaded from this section may result in loss of funds. Use them at your own risk.
LONG TERM GOLD BOT(FREE)
  20
  5
  1144
paid  22 Mar 2022
NOW FREE AND THE ORIGINAL FILE CAN NOW BE DOWNLOADED..... With as low as $1000, $500, $250, you can spin up the bot. It sure works on lower account size if you're willing to cope with lower trade size. It also keep a keen eye on Equity and Balance drawdown with multiple stoploss protection. Backtest And See for yourself..