- Home
- Algorithms
- cBots
cBots
Warning! Executing cBots downloaded from this section may result in loss of funds. Use them 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.
How to installHow to install cBots & Indicators
- Download the Indicator or cBot.
- Double-click on the downloaded file. This will install all necessary files in cAlgo.
- Find the indicator/cbot you want to use from the menu on the left.
- Add an instance of the indicator/cBot to run.
- Download the Indicator
- Double-click on the downloaded file. This will install all necessary files in cTrader.
-
Select the indicator from Custom in the functions (f) menu in the top center of the chart
- Enter the parameters and click OK
Breakout Trend Bot
4
5
1142
by ctid1731325
free
21 Sep 2022
By ForexCove. The Breakout Trend Bot trades in the direction of trend. Pending orders are placed x-pips above or below previous highest high or lowest low, and if market shows strength in the predicted direction, the trade is taken.
You can configure desired trend strength with built in ADX filter, and even let TP and SL targets be defined by ATR.
To download a sample config file, visit this link HERE
MACD Market Timer
3
0
581
by carneiroads
free
18 Sep 2022
Robot with MACD signal trend. M30 -H4 GBPUSD. if the market changes the primary trend to high, change the code indicated. I'm working to adjust this function.
https://paypal.com/donate/?hosted_button_id=7Z3P95CZYT5CA
Diamond clue
1
0
653
by iamlotiha
paid
20 Aug 2022
hello guys
I have a bot that has amazing results
I worked on it for years and used more than 400 lines of code without using any indicators.
And I want to share it with you. this robot is the gateway to heaven,
I know the first thing that comes to your mind is fraud
Don't forget that You are not my competitor in this market, I want your success
And unfortunately, the difference between original and fake is not clear in appearance
If you want to see the exact results, please email me and I will show you how the robot works _ iamlotiha@gmail.com
Thank you all. Thank you C Trader
following bot
3
0
862
by al-n
free
03 Aug 2022
this is just a simple bot that opens trades buy/sell and trails with sl in endles loop.
following bot
11
0
498
by al-n
free
03 Aug 2022
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
namespace cAlgo
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class TrailingStopLossSample : Robot
{
[Parameter("VolumeInLots", DefaultValue = 1)]
public double VolumeInLots { get; set; }
[Parameter("Buy")]
public bool Buy { get; set; }
[Parameter("Stop Loss", DefaultValue = 5)]
public double StopLoss { get; set; }
[Parameter("Trigger When Gaining", DefaultValue = 1)]
public double TriggerWhenGaining { get; set; }
[Parameter("Trailing Stop Loss Distance", DefaultValue = 1)]
public double TrailingStopLossDistance { get; set; }
[Parameter("Step (pips)", DefaultValue = 5)]
public double Step { get; set; }
private double _highestGain;
private bool _isTrailing;
protected override void OnStart()
{
}
protected override void OnTick()
{
// Schaut nach ob Positionen offen sind =)
if (Positions.Count == 0)
{
//Execute a market order based on the direction parameter
ExecuteMarketOrder(Buy ? TradeType.Buy : TradeType.Sell, Symbol, VolumeInLots * 100000, "SampleTrailing", StopLoss, null);
//Set the position's highest gain in pips
_highestGain = Positions[0].Pips;
}
{
var position = Positions.Find("SampleTrailing");
if (position == null)
{
Stop();
return;
}
//If the trigger is reached, the robot starts trailing
if (position.Pips >= TriggerWhenGaining)
{
//Based on the position's direction, we calculate the new stop loss price and we modify the position
if (position.TradeType == TradeType.Buy)
{
var newSLprice = Symbol.Ask - (Symbol.PipSize * TrailingStopLossDistance);
if (newSLprice > position.StopLoss)
{
ModifyPosition(position, newSLprice, null);
}
}
else
{
var newSLprice = Symbol.Bid + (Symbol.PipSize * TrailingStopLossDistance);
if (newSLprice < position.StopLoss)
{
ModifyPosition(position, newSLprice, null);
}
}
TriggerWhenGaining += Step;
}
}
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Simple EMA Crossover cBot
7
0
731
by oleh.mudryi
free
03 Aug 2022
// I need help here
bool close_buy = standart_ema.Result.LastValue > fast_ema.Result.LastValue;
bool close_sell = standart_ema.Result.LastValue < fast_ema.Result.LastValue;
var buy_position = Positions.Find("order_buy", SymbolName, TradeType.Buy);
var sell_position = Positions.Find("order_sell", SymbolName, TradeType.Sell);
if (standart_ema.Result.LastValue > fast_ema.Result.LastValue)
ClosePosition(buy_position);
else if (standart_ema.Result.LastValue < fast_ema.Result.LastValue)
ClosePosition(sell_position);
I am new one in C# programming and cAlgo. Please help me to close position correctly.
When i start my cBot, it stops on next bar.
It is hard to work with ClosePosition() method correctly
Can you help me in comment?
Gold cbot no Loss by> Durrani
26
0
1358
free
30 Jul 2022
always use 1 minute or 5 minute chart (candlestick)
always use 0.01 lot for good returns
only work on XAUUSD
open and close bot on same day after 24 hours or after sufficient profit
close the bot after the target is achieved
by mparama
paid
24 Jul 2022
New release "BBands Trend Follower 01.22"
In the new release we have added and implemented the following parameters:
- MaxHigh/MaxLow Months Limit (up to 2 years): Stop open & Close trades. TimeFrame Monthly applied.
- Consecutive Losses Filter: for a preventive protection this filter is always active. Parameters from 2 to 10, default 5.
- Gap/Spike Protection: Always active. It protects against opening "Gaps" and sudden "Spikes" that can generate continuous opening and closing of positions.
- Strategy Auto Select: with the cBot running, change automatically the strategy (Reverse or Breakout) after a certain number of losses specifying from the parameters after how many losing trades will be applied.
Added 3 more exit strategies:
- StopLoss Follow Up
- StopLoss Follow On Media
- Follow Short
- Solo SL/TP exit: if selected, it uses StopLoss or TakeProfit as the only exit strategy.
- SL/TP & BreakEven: if selected, it helps the main exit strategy or the "Solo SL / TP exit" in bringing the StopLoss above EntryPrice as soon as you are in profit.
- Money Management (Position Sizing) on winning and loosing trade. If the previous position was closed with a profit, increase the volume of the next position. If, on the other hand, the previous position was closed at a loss, it decreases the volume of the next position. From the parameters you can set the amount of volume to increase or decrease by specifying after how many losing trades will be applied.
-------------------------------------------------------------------------------------------------------------
The Trading System uses Bollinger Bands for volatility, but is used in a different way than usual, with long periods and Standard Deviation from 0.1 to 1 with a weighted moving average (it looks like a river). The Bollinger Bands serve mainly as a filter in entering the market avoiding periods of laterality.
cBot can be set as Reverse or Breakout strategy, the optimization will indicate the best strategy for each particular Currencies Cross, indices, Metals, Crypto Currencies.
-----------------------------------------------------------------
- Demo Version with 6 optimized parameters.
- 1 Year License ready to trade Live with 27 optimized parameters (Forex,Indices,Metal,Crypto,Commodities Oil & Natural Gas)
------------------------------------------------------------------
Additional products:
Breakout Reverse 5 Strategies Multi-TimeFrame cBot
HighLow Reverse cBot
BIAS Daily Time cBot
BIAS Weekly Time cBot
HL Rev Break Auto cBot
HL TF cBot
----------------------------------------------------------------------
DOWNLOAD DEMO VERSION
Active.cTrader.Bot HomePage
Contacts write to: active.ctrader.bot@gmail.com
----------------------------------------------------------------------
Open an account with Gumroad and become an affiliate and start earning by selling our products: Become an affiliate for Active cTrader Bot
....................................................................................
-SFPbot- (Swing Failure Pattern)
2
0
439
by float
paid
20 Jul 2022
-SFPbot- by float, trades using the "Swing Failure Pattern"
This insanely accurate algorithm offers complete customization and the ability to maximize returns and manage risk.
This is the first -quality- "SFP bot" that I have seen on the cTrader algo library.
Contact me directly to purchase bot!
Price: $1498
Discord: -float-#6638
Happy hunting!
-float
AW Manager
5
0
711
free
08 Jul 2022
close position in specefic equity.
it's useful for someone that couldn't control himself in live market.
Marigold Trade Manager
4
0
707
by jaco3d
paid
14 Jun 2022
The Marigold Trade Manager is designed to place positions quickly and precise. It uses an easy illustration layout and then automatically calculate the position's volume size. Position illustrations are risk-to-reward based with live tracking while the position is open. Closed positions are kept on the charts while the bot is running, displaying loss and profitable positions.
The concept is for the user to place the levels on the chart using the provided buttons. The bot automatically calculates direction whether its a market order or a pending order. Pending orders are also automatically calculated, whether its a stop order or limit order.
Risk sizing is persentage based, however RR and profit-loss values are displayed as well for reference.
Another feature is an advance take profit system which include a maximum of three partial profits for a position. Each partial profit size is also entered as percentages of the total profit. A Break Even level is also included for advanced set ups.
An added feature for scalpers is the session feature. It restrict positions to be placed outside of the trading session for the day. The session range is also displayed on the chart.
Because this is an illustration based bot, there are multiple themes to choose from which change the chart colors. If the theme is set to 0, the chart colors will not be adjusted.
The demo allows forward testing only. It has all the features enabled but does not open any positions.
The bot works with metals, currencies and indices. The list here below was tested with a base currency of USD only. Cross pairs and commodities currently does not work and will be developed for a future release. Please note, not all pairs are accurate with volume sizing. Slippage and spreads are not the same accross brokers, so its the user's discression to make sure that risk management is checked on this bot for accuracy and not to risk more than what you can afford.
These symbols were tested on a USD funded account and FXPro as the broker.
Majors:
- EURUSD
- GBPUSD
- USDJPY
- USDCHF
- USDCAD
Minors:
- AUDUSD
- NZDUSD (Higher loss than indicated)
- USDCNH (Higher loss than indicated)
- USDCZK
- USDDKK (Higher loss than indicated)
- USDHKD (Higher loss than indicated)
- USDHUF (Higher loss than indicated)
- USDILS (Higher loss than indicated)
- USDMXN (Higher loss than indicated)
- USDNOK (Higher loss than indicated)
- USDPLN (Higher loss than indicated)
- USDSEK (Higher loss than indicated)
- USDSGD (Higher loss than indicated)
- USDTHB
- USDTRY (Higher loss than indicated)
- USDZAR (Higher loss than indicated)
Metals:
- XAUUSD
- XPDUSD
- XPTUSD
Indices:
- AUS200
- EUR50
- France40
- Germany40
- Japan225
- UK100
- US30
- USNDAQ100
- USSPX500
Check out the Demonstration video to see it in action. The demo is free to download. Click Here for the Demo. E-mail me at jaco3d@hotmail.com to purchase the full version. The price without the source code is $20. The price with the source code is $150.
Versions:
V2.0 - 2022-06-06: Released to public
V2.1 - 2022-06-13: Fixed: Some positions would close when the break even line is triggered.
V2.2 - 2022-06-14: Fixed: When in a trade, the take profit levels could randomly overlap.
by yomm0401
paid
27 May 2022
This is a cBot for cTrader that automatically calculates lots and several close functions.
Ver 4.2
Price:$18+
Featurs
・ Two types of risk calculation (Up to 3 settings for each)
・ Two types of risk reward calculations (Amount base ・ Pips base)
・ Three types of ordering methods (Market order ・Pre order ・Stop/limit order)
・ Three types of partial close methods ( Amount・Each・Volume) and close all
・ Pips fixing function of stop loss and take profit line ・ switch function
・ Break Even line display /stop loss move to Break Even line button/Automatically move
・ Max lots Max spread,and split order
・ Almost all appearances can be customized and Hotkey
ロットの自動計算と複数の決済機能がひとつになったcTrader用のcBotになります。
価格:$18+
Ver 4.2
主な機能
・2種類のリスク計算(証拠金*パーセント/金額直接入力)
・2種類のリスクリワード計算(金額ベース/ピプスベース)
・3種類の注文方法(成行注文/予約注文/指値注文)
・3種類の一部close方法(条件の悪い方から金額で決済/条件の悪い方から枚数で決済/それぞれ決済)とチャート通貨全決済とすべての通貨全決済
・stop lossとtake profit ラインのpips固定機能・switch機能
・Break Even ラインの表示/損切ラインの移動ボタン/自動移動機能
・最大スプレット・最大ロットの設定・分割注文機能
・ほぼすべての外観はカスタマイズ可能/すべてのボタンはホットキー設定可能
Purchase from here 購入はこちら
Free trial version is here 無料トライアルバージョンはこちら
Another indicators:
--free--
Auto Calculate Lots Size
Custom R numbers
Another Symbol
Draw Pips
Time Frame Period Separators
Daily Volatility Average
Static Label and Horizon Line
Static Area
Static Color Text
Profit Pips Today
Upper TF Heikin-ashi Bull Bear
TF Candle
TF OHLC
Market High Low
Fibonacci Channel
Entry Check List
Custom Bid Ask Line
Display Symbol TF
Scale Bar
Countdown Alarm
Market High Low
Display Date
Entry Plan
Mirror Candle
Cross Hair
--paid--
ADR
Auto Calculate Lots Size V2
MTF Bollinger Bands
MTF MACD
MTF MA
MTF Candlesticks
Auto Calculate RR
MWD Line
MTF OHLCFP Lines Candles Before
MWD High Low Pro
TimeSync
Display Date Pro
Trend Line Alert
Market Time Period
cBot:
Close Panel cBot
Copyright © 2023 Spotware Systems Ltd. All rights reserved.