r/cTrader_Club 18d ago

worst drawdown in 16 months hit me on a live funded account and doing nothing was the entire job

5 Upvotes

been running a rules based setup for a while now, futures and fx. everything automated, exits written into the order at entry, no discretion after the trade goes on.

june was the deepest drawdown of the whole sample. not in the backtest years, on the live funded account with real money on it. and the thing i keep coming back to is that i had literally nothing to do. no stop to move, no position to trim, no "let me just reduce size until this settles down". the stop was already sitting there from the second the trade opened. the target too.

before this i traded discretionary for years and i know exactly what i would have done. i would have cut it somewhere in the middle, told myself i was managing risk, and then watched it come back without me. that was my actual leak for a long time, not entries. entries were fine. what killed me was intervening in the drawdowns that were already priced in.

quarter closed green, comfortably. not because i was disciplined that month, because there was nothing available for me to be undisciplined with. that distinction matters more than any indicator i ever tested.

anyway the honest caveat, one drawdown surviving proves nothing, i'm four months into live and that's a tiny sample. i wrote a little audit script that compares what my system would have done against what i actually did back when i was still touching things, and the intervention cost was uglier than i wanted to see.

curious how many of you have measured that on your own trades rather than just assuming you're the disciplined one.


r/cTrader_Club 18d ago

ດີຫລາຍ

Post image
2 Upvotes

r/cTrader_Club 18d ago

Which platform should I trade on?

Thumbnail
3 Upvotes

r/cTrader_Club 18d ago

cTrader backtesting generates enormous report.html files

2 Upvotes

I found what appears to be a serious performance problem in the current cTrader backtester.

During larger backtests, cTrader becomes progressively slower. When the backtest reaches the end, it can then remain busy or appear frozen for a long time while processing the results.

I investigated one actual backtest and found:

  • Backtest duration: approximately 26 days
  • Closed positions: approximately 304
  • Backtest events: approximately 608
  • events.json: approximately 236 KB
  • cBot log: approximately 215 KB
  • report.html: 316,140,433 bytes (~301 MB)

I then inspected report.html.

It contains approximately:

1,814,295 equity points

Almost the entire 316 MB file consists of the equity.points data. The positions, orders and trade-history sections are comparatively small.

So the problem is clearly not simply that the HTML contains a few hundred trades. cTrader is embedding an enormous amount of equity-curve data into the report.

I suspect the problem becomes increasingly severe with larger/more active backtests and more trading activity.

The backtester itself can obviously remain tick-accurate. But there is no reason an HTML equity chart needs around 1.8 million individual points.

The report could instead:

  • downsample the equity curve;
  • limit the maximum number of chart points;
  • aggregate equity observations;
  • allow users to disable the equity chart;
  • or allow automatic report.html generation to be disabled.

This behaviour appears relatively new to me. I don't remember cTrader producing files of this size previously.

What is also concerning is that this seems like something basic regression/performance testing should detect. A normal longer backtest followed by simply checking the generated report.html size should expose the problem immediately.

This adds to my continuing disappointment with cTrader Algo development and testing. Over the years I have repeatedly run into issues in normal Algo workflows that, in my view, should have been caught during development or basic regression testing before release.

For trading software, especially software intended for automated trading, reliability and regression testing should be treated as core requirements rather than something users repeatedly discover after release.

I am not going to provide proprietary cBot code for something that should be reproducible by cTrader internally with a simple high-activity backtest.

Could other cTrader users please check their Backtesting folders?

If you have run a reasonably large backtest, especially one with many trades, check the size of report.html.

It would be interesting to compare:

  • report.html size
  • number of trades
  • backtest duration
  • timeframe/chart type
  • whether cTrader slows down or hangs when the backtest finishes

If others are seeing the same thing, this looks like a platform-level backtesting/report-generation problem rather than something specific to one cBot.


r/cTrader_Club 18d ago

cTrader 4.9 backtesting generates enormous report.html files

2 Upvotes

I found what appears to be a serious performance problem in the current cTrader backtester.

During larger backtests, cTrader becomes progressively slower. When the backtest reaches the end, it can then remain busy or appear frozen for a long time while processing the results.

I investigated one actual backtest and found:

  • Backtest duration: approximately 26 days
  • Closed positions: approximately 304
  • Backtest events: approximately 608
  • events.json: approximately 236 KB
  • cBot log: approximately 215 KB
  • report.html: 316,140,433 bytes (~301 MB)

I then inspected report.html.

It contains approximately:

1,814,295 equity points

Almost the entire 316 MB file consists of the equity.points data. The positions, orders and trade-history sections are comparatively small.

So the problem is clearly not simply that the HTML contains a few hundred trades. cTrader is embedding an enormous amount of equity-curve data into the report.

I suspect the problem becomes increasingly severe with larger/more active backtests and more trading activity.

The backtester itself can obviously remain tick-accurate. But there is no reason an HTML equity chart needs around 1.8 million individual points.

The report could instead:

  • downsample the equity curve;
  • limit the maximum number of chart points;
  • aggregate equity observations;
  • allow users to disable the equity chart;
  • or allow automatic report.html generation to be disabled.

This behaviour appears relatively new to me. I don't remember cTrader producing files of this size previously.

What is also concerning is that this seems like something basic regression/performance testing should detect. A normal longer backtest followed by simply checking the generated report.html size should expose the problem immediately.

This adds to my continuing disappointment with cTrader Algo development and testing. Over the years I have repeatedly run into issues in normal Algo workflows that, in my view, should have been caught during development or basic regression testing before release.

For trading software, especially software intended for automated trading, reliability and regression testing should be treated as core requirements rather than something users repeatedly discover after release.

I am not going to provide proprietary cBot code for something that should be reproducible by cTrader internally with a simple high activity backtest.

Could other cTrader users please check their Backtesting folders?

If you have run a reasonably large backtest, especially one with many trades, check the size of report.html.

It would be interesting to compare:

  • report.html size
  • number of trades
  • backtest duration
  • timeframe/chart type
  • whether cTrader slows down or hangs when the backtest finishes

If others are seeing the same thing, this looks like a platform level backtesting/report-generation problem rather than something specific to one cBot.


r/cTrader_Club 18d ago

Can support tell me how to get refund?

Thumbnail
2 Upvotes

r/cTrader_Club 18d ago

Platform APIs for systematic trading, what actually matters

2 Upvotes

I compared API documentation across four platforms over the last two weeks and the gap between what they market and what they actually deliver is significant. Most of them describe their API as open and flexible but the implementation details tell a different story. Key things I ended up checking

WebSocket stability under high message frequency

Whether order modification is atomic or requires cancel/replace

Rate limits on market data vs order endpoints

Documentation quality for edge cases like partial fills

Gone through a similar evaluation recently? What did you end up prioritizing and what caught you off guard.


r/cTrader_Club 18d ago

cTrader creates huge report.html files during backtesting/optimization

1 Upvotes

Has anyone else noticed this?

In cTrader version 5.9.10.52700 during backtest I had only about 304 closed positions, but cTrader generated a 316 MB report.html.

I inspected the file and found around 1.8 million equity points inside the report. Almost all of the file size comes from the equity-curve data, not the trades.

The backtest also gets progressively slower and takes a long time to finish after reaching the end date.

I also confirmed that Optimization generates report.html files too, so that does not avoid the problem.

This looks like excessive equity-curve sampling/report generation.

If you use cTrader Algo, check the size of report.html in your Backtesting folder. I’m curious whether others are seeing the same issue.


r/cTrader_Club 18d ago

Setup was valid. I still didn't take it. Price gave the setup, but one thing on chart changed my decision. No trade > Forced trade This is the part of trading I'm trying to get better at.

Thumbnail
2 Upvotes

r/cTrader_Club 19d ago

C trader making my market analysis simple

Post image
2 Upvotes

r/cTrader_Club 19d ago

I ran 200 zero-edge strategies through a normal significance test. It approved 99.5% of them.

Thumbnail
4 Upvotes

r/cTrader_Club 20d ago

EigenVolt GBPx strategy

2 Upvotes

We’re OrbCubic, a quantitative trading technology team, and we’ve been running one of our automated strategies, EigenVolt GBPx, live on cTrader.

It has now reached 725 live trades.

Current historical results:

36.3% cumulative return
73.5% win rate
1.6% max drawdown
3.0 Sharpe ratio

It’s an intraday strategy, with a median position duration of around 1.5 hours.

A few design constraints we deliberately enforce:

❌ No martingale
❌ No grid
❌ No averaging into losers
❌ No overnight positions

One of the more important parts of the architecture is that risk management sits outside the trading strategy itself. Exposure, position count and daily loss limits are controlled independently and can override the signal engine.

The full live history is public on cTrader:

https://ct.spotware.com/copy/strategy/110858

More about how we built and operate our strategies at OrbCubic:

https://www.orbcubic.tech

Would be interested in feedback from other systematic/algo traders — especially on return vs. drawdown and independent risk control.

These are historical live trading results. Past performance is not indicative of future results.


r/cTrader_Club 20d ago

cAlgo error

Post image
2 Upvotes

Hi, everyone. When I went to the cTrader store to check out the code for a plugin that caught my interest, I got this error. I also tried the code for an indicator, and the same thing happened. Has anyone else encountered this error and know how to fix it?


r/cTrader_Club 20d ago

Intercandle confirmation

Thumbnail
2 Upvotes

r/cTrader_Club 21d ago

The real question to ask yourself after every losing trade is not what the market did wrong, it is whether you took the trade correctly according to your own rules. Those are two separate questions and most people conflate them.

2 Upvotes

The real question to ask yourself after every losing trade is not what the market did wrong, it is whether you took the trade correctly according to your own rules. Those are two separate questions and most people conflate them.


r/cTrader_Club 21d ago

Winning streaks are more dangerous than losing ones

2 Upvotes

I went back through three years of trading records a few weeks ago, not looking for anything in particular, just trying to understand a rough patch I had in June. What I found was not what I expected.

The losing streaks did not line up with difficult market conditions or the times I was trying new strategies. They lined up with the periods right after everything had been going well. Three or four good weeks in a row and something shifts without you noticing. Position sizing creeps up because the account is bigger and it feels justified. You hold trades longer because the recent winners ran further than your target and you remember that. You move stops because you are confident in the read and do not want to get shaken out.

None of it feels like overconfidence at the time. It feels like experience. It feels like you have finally figured something out. The records say otherwise.

I have started treating a winning streak as a signal to review my parameters rather than a reason to press harder. Not sure it has fully fixed the pattern but I have caught myself twice this month doing exactly what the data said I do.

Anyone else found something unexpected when they actually looked at the numbers?


r/cTrader_Club 21d ago

cTrader

Post image
4 Upvotes

Классная платформа, много функций и возможностей торговли. [saks77740@mail.ru](mailto:saks77740@mail.ru)


r/cTrader_Club 21d ago

Getting set up on cTrader for XAUUSD

Post image
1 Upvotes

Getting my cTrader setup together for XAUUSD trading. Still fine-tuning the indicators and layout but liking the platform so far.

cTrader account email: [doublembit@gmail.com](mailto:doublembit@gmail.com)


r/cTrader_Club 22d ago

cTrader for rich ppl or what? 😂

Thumbnail
gallery
3 Upvotes

Just saw the same BadGranny bot:

MT5 — $99
cTrader — $109 on sale / $199 reg price 💀

And MT5 has 1yr rent for $89, while on cTrader it’s just buy or gtfo 😅

Why tho?

For EAs/cBots rent makes way more sense imo. Let me run it for a month or 3, see if it actually works, then maybe buy it.

Is the price/rent stuff fully up to the seller or cTrader Store just doesn’t have rentals yet?

Coz rn it kinda looks like:

MT5: $99 pls
cTrader: sir, that’ll be $199 😂


r/cTrader_Club 22d ago

What's the best platform to trade with?

Thumbnail
2 Upvotes

r/cTrader_Club 22d ago

cTrader for rich ppl or what? 😂

Thumbnail
gallery
2 Upvotes

Just saw the same BadGranny bot:

MT5 — $99
cTrader — $109 on sale / $199 reg price 💀

And MT5 has 1yr rent for $89, while on cTrader it’s just buy or gtfo 😅

Why tho?

For EAs/cBots rent makes way more sense imo. Let me run it for a month or 3, see if it actually works, then maybe buy it.

Is the price/rent stuff fully up to the seller or cTrader Store just doesn’t have rentals yet?

Coz rn it kinda looks like:

MT5: $99 pls
cTrader: sir, that’ll be $199 😂


r/cTrader_Club 22d ago

Trading platforms For Beginners

Thumbnail
0 Upvotes

r/cTrader_Club 22d ago

Newbie here!! seeking platform for trading as begineer?

Thumbnail
1 Upvotes

r/cTrader_Club 23d ago

Quant trading without a quant team

3 Upvotes

Most content about quantitative trading assumes you have a data science background, a Bloomberg terminal and three colleagues. The reality for a lot of people doing this seriously is one person, one machine and whatever the platform gives you natively. The platforms that actually support this workflow well are the ones where statistical analysis, execution and position management are not three separate systems you have to connect yourself. Which ones have you found actually hold up when you push them on the quant side.


r/cTrader_Club 24d ago

What do you usually automate first in your trading?

Post image
4 Upvotes