Information
Username: | ctrader.guru |
Member since: | 19 Jul 2018 |
Last login: | 13 Nov 2024 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 14 | 65 |
Forum Topics | 22 | 34 |
Jobs | 1 | 41 |
About
Last Algorithm Comments
Thanks ❤️
Excellent work, congratulations!
If you open a trade with MT5 and copy with ctrader, not close position on ctrader but from MT5, Providers are a masters, copyers are a slaves
Bifrost has no problem with disconnections or instability, it uses local connections and never remote and impossible to disconnect, Its stability is incomparable.
Thanks for sharing this valuable information! I completely agree with your analysis of the Custom VIX Oscillator. It's a reliable tool for assessing market volatility, and your points on higher/lower values, overbought/oversold conditions, and divergences are spot on. Great insights! ????????
Great explanation! The Wildhog oscillator seems to provide a comprehensive analysis of overbought/oversold conditions with multiple indicator components. It's impressive how it detects supply and demand factors based on accumulation or distribution phases. I agree, this indicator is worth exploring. Thanks for sharing! #Trading #Analysis
This project has no supporters, so I don't waste time with updates, when there start to be sponsors I will come back to this project. No one likes to work for free.
Become a sponsor: https://github.com/sponsors/cTrader-Guru
I like it, very interesting project, thanks for sharing.
This project moved here cTrader Guru | Engulfing
This project has become free for all cTrader Guru | cBots Mega Pack
This project has become free for all cTrader Guru | Bifrost
This project has become free for all cTrader Guru | cBots Mega Pack
Bifrost update 1.1.4 fixed a minor bug with new version of ctrader 4.2 and higher https://ctrader.guru/?repository=bifrost&category=cbots
If you want to copy trades to and from MT4 / MT5 / cTrader you have to use Bifrost, which is free and will become open source next year if there are an adequate number of sponsors:
- Download | https://ctrader.guru/?repository=bifrost&category=cbots
- Tutorial | https://www.youtube.com/watch?v=Y3CV074hQTU
Installation is very simple, only assistance is given to sponsors to keep the project free.
Yes
this error is very strange, it seems Do not derive from the ctrader, contact me on Telegram and let's try to investigate together
This is a free project; support and any modifications and customizations are made only to sponsors https://ctrader.guru/
this cbot uses a template that includes methods for educational purposes only, I like to make my students understand how things work, I deliberately left some old methods, which are now natively included, to teach how to extend objects.
If you are good enough, you will know how to modify them.
For security reasons, you can only use Bifrost on the same PC.
Update 1.0.2 Increased precision
Update 1.0.1 fixed minor bug
#Bifrost 1.1.3 buff.ly/3zZIp0T
???? Fixed minor bug in Copier cTrader for Globalization, now work fine on all VPS
#Update #Changelog
Use the TRANSLATE parameter
- de40 chash.:de40.
Updated expire date to 31.12.2022
https://twitter.com/cTraderGuru/status/1478653828874518528
Yes, you can
For me work fine, video : Bifrost | MT5 to cTrader example - YouTube
YOUR VERSION 1.08 NEW VERSION 1.11, PLEASE UPDATE AND MAKE A VIDEO, I CAN'T HELP YOU IF YOU USE OLD VERSION.
YOU ARE ONLY ONE WITH THIS ISSUE, ALL USERS IN THE WORLD WORK FINE.
Hi Miroslav,
- Your Copyer is 1.08 and updated is 1.11
- When open with EA, some times with some EA send bad SL/TP
- Before testing a pair open positions in manual, if it works correctly then the problem is of the EA.
Please stop writing the same things over and over again.
Bifrost update 1.11 Bifrost | cTrader Guru
- Fixed Translation issue, pair uppercase
Bifrost update 1.10 Bifrost | cTrader Guru
- Fixed Translation issue for Index like GER30
Bifrost update 1.09 Bifrost | cTrader Guru
- Fixed a little bug
- Add Telegram Notify
- Add Translation pair, es. from GER30 to DE30 (GER30:DE30)
I see the position is opened by an EA, if you try to open a position in manual does it return the same error?
I need more information, come here https://t.me/ctraderguru
Hi @Miroslav
I have posted a video showing the correct function.
- Bifrost from MT5 to cTrader - YouTube
Free support here https://t.me/ctraderguru and ask for Bifrost
Tested now, work fine, please record a video
Hi @kenneyy_eur
Trend Master is a very solid and stable cBot, the optimizations we share are very stable and I earn the right, however Trend Master can also be used as a #scalper depends on how it is optimized and what you want it to do, we are very proud to have created a very powerful cBot
...this is what happens when a customer buys and puts Trend Master to work https://ct.topfx.com/copy/strategy/27121
@gmkenneyy u can download backtest version, pay attention to the "Scarica la versione di prova o Patreon PRO" button, at the bottom of the page you will find a combobox where you can select your language and translate the site, remember only backtest or pay for full version
A strategy like this scalper found here Adrenaline with ctrader.guru technology inside, this week special offer, enjoy!
#TrendMaster 1.1.7 #Free #Preset https://www.patreon.com/posts/49343771
@dawid.pielak only backtest
Preset free for all https://www.patreon.com/posts/48524005
#TrendMaster Preset Patreon Free ForAll : Trend Master preset 15m Amazing (reverse) | cTrader Guru su Patreon
It works great, I tested it right now 3.8
Add To Reverse on loss trade, good for trend following bad for lateral
// -------------------------------------------------------------------------------------------------
//
// This code is a cAlgo API sample.
//
// This robot is intended to be used as a sample and does not guarantee any particular outcome or
// profit of any kind. Use it at your own risk
//
// All changes to this file will be lost on next application start.
// If you are going to modify this file please make a copy using the "Duplicate" command.
//
// The "Sample Martingale Robot" creates a random Sell or Buy order. If the Stop loss is hit, a new
// order of the same type (Buy / Sell) is created with double the Initial Volume amount. The robot will
// continue to double the volume amount for all orders created until one of them hits the take Profit.
// After a Take Profit is hit, a new random Buy or Sell order is created with the Initial Volume amount.
//
// -------------------------------------------------------------------------------------------------
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 MartingaleRobot : Robot
{
[Parameter("Initial Volume", DefaultValue = 1000, MinValue = 0)]
public int InitialVolume { get; set; }
[Parameter("Stop Loss", DefaultValue = 40)]
public int StopLoss { get; set; }
[Parameter("Take Profit", DefaultValue = 60)]
public int TakeProfit { get; set; }
[Parameter("To Reverse?", DefaultValue = true)]
public bool ToReverse { get; set; }
private Random random = new Random();
protected override void OnStart()
{
Positions.Closed += OnPositionsClosed;
ExecuteOrder(InitialVolume, GetRandomTradeType());
}
private void ExecuteOrder(long volume, TradeType tradeType)
{
var result = ExecuteMarketOrder(tradeType, Symbol, volume, "Martingale", StopLoss, TakeProfit);
if (result.Error == ErrorCode.NoMoney)
Stop();
}
private void OnPositionsClosed(PositionClosedEventArgs args)
{
Print("Closed");
var position = args.Position;
if (position.Label != "Martingale" || position.SymbolCode != Symbol.Code)
return;
if (position.NetProfit > 0)
{
ExecuteOrder(InitialVolume, position.TradeType);
}
else
{
TradeType reversed = (position.TradeType == TradeType.Sell) ? TradeType.Buy : TradeType.Sell;
ExecuteOrder((int)position.Volume * 2, (ToReverse) ? reversed : position.TradeType);
}
}
private TradeType GetRandomTradeType()
{
return random.Next(2) == 0 ? TradeType.Buy : TradeType.Sell;
}
}
}
Signup & Download FREE : https://ctrader.guru/product/trend-vision/
optimize every month
Ti consiglio di seguire il nostro gruppo Telegram https://t.me/ctraderguru
Signup & Download FREE : https://ctrader.guru/product/engulfing/
Use this cBot online for Forex cross, EURUSD ; USDJPY ; etc...
Hi, I always suggest to do an optimization for the last 6 months and to repeat the optimization every month, there is no cbot in the world able to satisfy every market period so you have to adapt periodically
Ciao, io consiglio sempre di fare un'ottimizzazione per gli ultimi 6 mesi e di ripetere l'ottimizzazione ogni mese, non esiste al mondo un cbot in grado di soddisfare ogni periodo di mercato quindi bisogna adeguarsi periodicamente
Stranger Things
@sifneosfx you're out of the way, this cbot uses an input pattern called Engulfing, do you know what a pattern is? do you know what the Engulfing pattern is?
This cBot, after entering the pattern, manages the money management and finally the closure, all automatically!
I didn't say 100% profit but 100% automatic, it means that you don't have to do anything, think of everything like openings, management and closures
This is 100% cbot !
Last Jobs Comments
Ciao,
sono disponibile, mi trovi su Telegram https://t.me/LeonardoCiaccio oppure via email ctrader.guru@gmail.com
Don't spend a single penny, this is the project you need to refer to https://ctrader.guru/?repository=ma-color-candles&category=indicators
€100 is a bit too little, you should increase the budget, contact us if you want a quote.
I can do this for 80 GBP
Telegram: https://t.me/LeonardoCiaccio
Email: ctrader.guru@gmail.com
Official Website: https://ctrader.guru
or contact me from here https://ctrader.com/consultants/ (cTrader Guru)
I am available, please contact me in private
Telegram: https://t.me/LeonardoCiaccio
Email: ctrader.guru@gmail.com
Official Website: https://ctrader.guru
or contact me from here https://ctrader.com/consultants/ (cTrader Guru)
If you mean a cbot that does trendline operations then you can take a cue from this open-source project cTrader Guru | TrendLine Power
You are very confused, this is the community for cTrader, if you wish to get assistance for Tradingview then follow the Tradingview community
On second thought, you might not spend a cent, use this free indicator Amazing Donchian Indicator | Algorithmic Forex Trading | cTrader Community
I can do it for $25 if you share ctrader.guru with your social
Telegram: https://t.me/LeonardoCiaccio
Email: ctrader.guru@gmail.com
Official Website: https://ctrader.guru
or contact me from here https://ctrader.com/consultants/ (cTrader Guru)
I can do it for $35 if you share ctrader.guru with your social
Telegram: https://t.me/LeonardoCiaccio
Email: ctrader.guru@gmail.com
Official Website: https://ctrader.guru
or contact me from here https://ctrader.com/consultants/ (cTrader Guru)
I can do it for $20 if you share ctrader.guru with your social
Telegram: https://t.me/LeonardoCiaccio
Email: ctrader.guru@gmail.com
Official Website: https://ctrader.guru
or contact me from here https://ctrader.com/consultants/ (cTrader Guru)
or contact me from here https://ctrader.com/consultants/ (cTrader Guru)
Telegram: https://t.me/LeonardoCiaccio
Email: ctrader.guru@gmail.com
Official Website: https://ctrader.guru
I can do it for $60 if you share ctrader.guru with your social
unfortunately, you are not the only one who does these things, the 22 years of honored experience do you know how many people like you I have met? So many!!!
I offered you a free and open-source solution, but you started asking to modify and insert new options that inevitably made the price of development go up.
The obscenest thing, and that you even asked me to give you a discount and charge you $20, I don't do charity, yet all my products are free and open-source, you are unfair.
A trader who cannot spend $50 cannot be a trader!
I can develop this tool for you for $20
Hi, you don't have to spend a single cent because you already get a free solution Trendline Power | cTrader Guru
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru (Italian official support)
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there,
you need Bifrost, a free tool for cTrader / MT4 / MT5 without spending a single penny
- Free Download, https://ctrader.guru/en/shop/tools/bifrost/
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there,
you need Trades To Webhook, a free tool without spending a single penny
- Free Download, https://ctrader.guru/en/shop/tools/trades-to-webhook/
Best Regards,
Hi there,
you need Bifrost, a free tool for cTrader / MT4 / MT5 without spending a single penny
- Free Download, https://ctrader.guru/en/shop/tools/bifrost/
Best Regards,
Hi there,
you need Bifrost, a free tool for cTrader / MT4 / MT5 without spending a single penny
- Free Download, https://ctrader.guru/en/shop/tools/bifrost/
Best Regards,
Hi there,
you need Money Break Even, a free tool without spending a single penny
- Free Download, https://ctrader.guru/en/shop/tools/money-break-even/
Best Regards,
Hi there,
you need Bifrost, a free tool for cTrader / MT4 / MT5 without spending a single penny
- Free Download, https://ctrader.guru/en/shop/tools/bifrost/
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi there, (we offer you 20% discount if you reply within 5 days from the date of this message)
We can help you with your project. You can contact us at :
- Email, info@ctrader.guru
- Telegram, https://t.me/ctraderguru
- Messenger, https://m.me/ctrader.guru
Best Regards,
Hi,
this is a free and open-source tool, if you want I can edit for your Trades To Webhook | cTrader Guru
Why u want pay when it's free ? Download free and open-source Money Break Even | cTrader Guru
This cBot is even better https://www.reddit.com/r/cTraderGuru/comments/1g0etby/how_to_copy_by_alerts_signals_from_tradingview_to/