
Eyube Ephraim

Info
Username: | danieleyube |
Name: | Eyube Ephraim |
Member since: | 26 Jan 2021 |
Country: | Nigeria |
Favorite symbols:
About
Signature
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: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: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
@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.
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).