Description
DAX OPTIMIZED FOR PEPPERSTONE
I created this algo for very small accounts. At Pepperstone you can trade the DAX at 0.01 lot.
With Startcapital of 3,- Euro it has made an average of 1,99 per Month, thats over 65% (For more drawdown security, you can also start with 10 euros.
And of course, you still have to add the margin. At Pepperstone Europe approx. 10,- Euro per 0.01 lot.
So you must have at least 13 euros in your account.
The Bot trades only between 07:00 and 19:55 (The bot is programmed to always use UTC+0 by default. You will need to adjust the time at "Trade Entry Periods" to match your time zone). So it closes all Positions at the close of trading.
Download now for free Test until 20.12.24 on my google Drive:
https://drive.google.com/file/d/1GwEQb49YOa4VNa4crQl_iNbV23bC6ep6/view?usp=sharing
cbotset File (from 01.01.24 Start with 3,- Euro, its 65% per Month):
https://drive.google.com/file/d/1Su1pPjJ2PBg2jwRlxBJ1hJX-3cH7t2vs/view?usp=sharing
second Optimization cbotset File (from 01.01.24 Start with 5,- Euro, its 55% per Month):
https://drive.google.com/file/d/1vuzsDLkrnfKLndLeQFCpIs1lfKXf9dB-/view?usp=sharing
What is a Cbotset File?
Here you can load the special Settings for each Optimization with a Cbotset file:
You can optimize by yourself:
Download optset File, which I have preset for Optimization:
https://drive.google.com/file/d/1POnRHY5-xESm8sldvY5_lm7ymElNX6PK/view?usp=sharing
Keep in mind that I only set the optimization between 07:00 and 19:55 UTC+0 (I set it so that all positions are closed at the end of the day. You need to consider your time zone you live in). Because with Pepperstone you don't see the swap fees in the backtest, which makes it very inaccurate.
Optimization Parameters
Backtest Settings
Optimization Criteria
GER40
Time Horizon: 3 Minutes
Only intraday Trades from 07:00-19:55 (UTC+0)
No Martingale
Only long trades
Just 1 Trade open always
Recognizes open positions, so you can stopp in between
Free to use for all Lotsizes and Assets
100% automatic, runs 24h
Ready to go immediately
100% made in Germany
Special Price: 200,- Euro
(With Lifetime License, without Source Code)
Payment methods: PayPal and bank transfers
email: german.algotrading@gmail.com
The bot now has a new code that recognizes existing open positions. So if you stop the bot in between, all open positions will be treated as if it had never been stopped.
If necessary, I will give you instructions on how to install the bot.
In order for the backtest to work properly, it is essential that you enter „Tick Data from server accurate“.
I can also recommend copy software that I have tested myself. I don't earn anything from it. If you run the Cbot on a demo, you can copy it to other C-trader brokers or MetaTrader accounts.
Heron Copier. cTrader, MetaTrader 4, MetaTrader 5, TradeLocker, MatchTrader Trade Copier.
You can trust me that all the images on the site are accurate and all the information is true.
Please contact me for any questions.
Best regards,
Luke
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
namespace cAlgo.Robots
{
[Robot(AccessRights = AccessRights.None)]
public class NewcBottest : Robot
{
[Parameter(DefaultValue = "Hello world!")]
public string Message { get; set; }
protected override void OnStart()
{
// To learn more about cTrader Automate visit our Help Center:
// https://help.ctrader.com/ctrader-automate
Print(Message);
}
protected override void OnTick()
{
// Handle price updates here
}
protected override void OnStop()
{
// Handle cBot stop here
}
}
}
german.algotrading
Joined on 22.04.2024
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: New cBot test.algo
- Rating: 0
- Installs: 538
- Modified: 27/05/2024 10:37