Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

singularity

How to Compare Properly Two EA/strategy/indicator?

Recommended Posts

I would like to know how should I compare the performance of two different strategy.

 

Let's say I give you two source code. Each of them is a winning strategy, ready to run. However - of course - you won't send them immediately to your live account, but you check their performance in your environment. How would you decide which one is the better? How much data is required to draw some conclusions of the performance?

 

I'm really interested in this guys, because I have seen great looking equity curves but I don't trust them. How do you decide which EA has better performance, and what are your criterions?

 

Now I am fully aware of the fact comparing their performance is a subjective thing since everyone has his own taste. I'm not asking to help what should I use. I'm asking you to show me some examples how you really compare the performance when you analyze them.

 

Also - just theoretically - please assume that you have to choose one strategy from the two winners because you can only run one on the live acccount. Let's just leave portfolios for a moment in this thread...

 

In a geeky way my question is the following:

double GetStrategyScore(string sourceCode)
{
 double score = ..... // <--- what would you put here so you could compare two strategy and decide which one is better?
 return score;
}

 

Thanks for any advice!

Share this post


Link to post
Share on other sites

double score = MathSrand(); :rofl:

 

 

Well it's as likely to be as good as anything else given your dealing with a non stationary time series, and since you've given no details about what you consider to be "better", how could we even begin to guess ?

 

What's important to you? Returns, drawdown, frequency of trades, capital requirements, correlation with other markets etc etc etc. the list is endless, and my idea of a good system, is unlikely to meet your requirements and vice versa.

 

Most traders using automation tend to continually diversify risk across multiple systems anyway, so when in the situation of having 2 profitable strategies, they'd run both.

 

The key point here is just because a strategy performs in a particular way historically really doesn't mean it will continue to do so in the future, you can almost guarantee that it won't, but you can't predict if it'll get better or worse, but it's unlikely to be the same

Share this post


Link to post
Share on other sites
.., and since you've given no details about what you consider to be "better", how could we even begin to guess ?

 

Zupcon, thanks for feedback, now I can come up with a new better but similar question. Here it goes:

Let's say I have a nice strategy. I even implemented for you. Then I send it to you because I maybe stupid to keep it...

So you have now an implemented strategy out of nowhere. Let's assume that you already running a portfolio on one or more live account and you are doing fine with it. However you check this new strategy and if it's reasonably good, then you put it into your portfolio.

Now here comes my question: what requirements need to be met for you to give this strategy a chance on a live account? What do you want to see to have the conclusion that you should try to run this strategy next to your already running instances?

I hope this is a more understandable question.

 

Now, I want to put emphasis on the part what do YOU check? I am interested in what you, Zupcon or others check before it can go live. I would like to hear examples from you how do do it? What are your priorities?

This is simply because I want to see examples how others do this thing, since I have no real life example yet. I simply learn these things now and I think there are no better knowledge than real life examples that are used by real life people. I'm aware of lot of theoretical, mathematical writings on this topic, but I really would like to hear your routine.

 

Thank you again.

Share this post


Link to post
Share on other sites
That's clear and simple but I'm curious here if this is the only thing you need to know before the strategy can go live?

 

There are quite a few metrics of interest, I just suggested a simplistic one, tha captures a lot for comparing two systems.

 

You could look into Sharpe ratio, drawdown etc.

 

It is obviously necessary to forward test the strategy.

Share this post


Link to post
Share on other sites

Have written several strategies which made thousands of $$ in backtest but failed in forward testing, the best some of them did was make 2 ES points per day which was not a worth it for me - that is the bottom line (having examined sharpe ratio, draw down, etc.).

I do look at the largest losing trade (while not using a stop loss) to gauge the efficacy

of the strategy logic.

Share this post


Link to post
Share on other sites
Have written several strategies which made thousands of $$ in backtest but failed in forward testing, the best some of them did was make 2 ES points per day which was not a worth it for me - that is the bottom line (having examined sharpe ratio, draw down, etc.).

I do look at the largest losing trade (while not using a stop loss) to gauge the efficacy

of the strategy logic.

 

 

 

2 ES points per day is plenty. If you have something like that, then you should trade it. I would guess that you don't have a strategy that returns 2 ES points a day, otherwise you would be trading it and making a lot of money.

Share this post


Link to post
Share on other sites
2 ES points per day is plenty. If you have something like that, then you should trade it. I would guess that you don't have a strategy that returns 2 ES points a day, otherwise you would be trading it and making a lot of money.

 

I just wanted to point out to @singularity that there could be other factors to consider.

Your guess is wrong, but your comment serves to illustrate my point; food for thought for you too.

 

Cheers. :)

Share this post


Link to post
Share on other sites

No, my guess is not wrong. Anyone who can develop a strategy that makes 2 points a day net average on ES, knows that is more than enough and would appreiate it and trade it and not look for other things.

 

One can easily get filled 100 contracts on the ES, which corresponds to $5000 per point, which for a 2 point a day strategy corresponds to $10,000 a day or $50,000 a week average.

 

And yet here we have you saying you're not interested in $50,000 a week salary and you'll look for something else.

 

What a load of nonsense.

 

You DON'T have a strategy that makes 2 points a day on the ES. What you perhaps have is some curve fit strategy that doesn't work and loses money per day on average.

Share this post


Link to post
Share on other sites
No, my guess is not wrong. Anyone who can develop a strategy that makes 2 points a day net average on ES, knows that is more than enough and would appreiate it and trade it and not look for other things.

 

One can easily get filled 100 contracts on the ES, which corresponds to $5000 per point, which for a 2 point a day strategy corresponds to $10,000 a day or $50,000 a week average.

 

And yet here we have you saying you're not interested in $50,000 a week salary and you'll look for something else.

 

What a load of nonsense.

 

You DON'T have a strategy that makes 2 points a day on the ES. What you perhaps have is some curve fit strategy that doesn't work and loses money per day on average.

 

Would you trade such a system if it experienced significant drawdowns ?

 

I probably wouldn't , even if it averaged 2 points a day

 

I've got a few profitable ideas that I developed and won't trade based on drawdown, or variance in returns. It's not all about profit at any cost.

Share this post


Link to post
Share on other sites
2 ES points per day is plenty. If you have something like that, then you should trade it. I would guess that you don't have a strategy that returns 2 ES points a day, otherwise you would be trading it and making a lot of money.

 

CAGR/Max DD

 

This is how mutual funds are rated.

Share this post


Link to post
Share on other sites
Would you trade such a system if it experienced significant drawdowns ?

 

I probably wouldn't , even if it averaged 2 points a day

 

I've got a few profitable ideas that I developed and won't trade based on drawdown, or variance in returns. It's not all about profit at any cost.

 

 

Depends.

 

Now, if you have 20 strategies which work, then you can compare expectancy and variance, and then you may decide it's not worth trading the 2 point a day ES strategy as you have better.

 

However, if you have no strategies which work, except this 2 point a day strat, then that's all you got that's profitable. So yes I would trade it in those circumstances while I looked for something better, or developed the strat further. So perhaps I misread renvik's post, seemed to me he was saying he just had loads of strategies which didn't work and this one strategy which did but he didn't consider good enough and nothing else. So apologies if I read your post wrong renvik, and hope you're trading an even better strategy.

 

I think I've just been reading too many false claims over the years, with people talking about 70% win rates and winners twice as large as losers, or 80% winners and 1:1 risk reward etc (read both only the other day). A 2 point a day edge on the ES seems a lot in my opinion. In my experience a lot of edges (mechanical ones at least) are small and a lot closer to the 50% for a 1:1 risk reward or closer to 33% for a 1:2 risk reward than most people seem willing to admit on public forums.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • How's about other crypto exchanges? Are all they banned in your country or only Binance?
    • Be careful who you blame.   I can tell you one thing for sure.   Effective traders don’t blame others when things start to go wrong.   You can hang onto your tendency to play the victim, or the martyr… but if you want to achieve in trading, you have to be prepared to take responsibility.   People assign reasons to outcomes, whether based on internal or external factors.   When traders face losses, it's common for them to blame bad luck, poor advice, or other external factors, rather than reflecting on their own personal attributes like arrogance, fear, or greed.   This is a challenging lesson to grasp in your trading journey, but one that holds immense value.   This is called attribution theory. Taking responsibility for your actions is the key to improving your trading skills. Pause and ask yourself - What role did I play in my financial decisions?   After all, you were the one who listened to that source, and decided to act on that trade based on the rumour. Attributing results solely to external circumstances is what is known as having an ‘external locus of control’.   It's a concept coined by psychologist Julian Rotter in 1954. A trader with an external locus of control might say, "I made a profit because the markets are currently favourable."   Instead, strive to develop an "internal locus of control" and take ownership of your actions.   Assume that all trading results are within your realm of responsibility and actively seek ways to improve your own behaviour.   This is the fastest route to enhancing your trading abilities. A trader with an internal locus of control might proudly state, "My equity curve is rising because I am a disciplined trader who faithfully follows my trading plan." Author: Louise Bedford Source: https://www.tradinggame.com.au/
    • SELF IMPROVEMENT.   The whole self-help industry began when Dale Carnegie published How to Win Friends and Influence People in 1936. Then came other classics like Think And Grow Rich by Napoleon Hill, Awaken the Giant Within by Tony Robbins toward the end of the century.   Today, teaching people how to improve themselves is a business. A pure ruthless business where some people sell utter bullshit.   There are broke Instagrammers and YouTubers with literally no solid background teaching men how to be attractive to women, how to begin a start-up, how to become successful — most of these guys speaking nothing more than hollow motivational words and cliche stuff. They waste your time. Some of these people who present themselves as hugely successful also give talks and write books.   There are so many books on financial advice, self-improvement, love, etc and some people actually try to read them. They are a waste of time, mostly.   When you start reading a dozen books on finance you realize that they all say the same stuff.   You are not going to live forever in the learning phase. Don't procrastinate by reading bull-shit or the same good knowledge in 10 books. What we ought to do is choose wisely.   Yes. A good book can change your life, given you do what it asks you to do.   All the books I have named up to now are worthy of reading. Tim Ferriss, Simon Sinek, Robert Greene — these guys are worthy of reading. These guys teach what others don't. Their books are unique and actually, come from relevant and successful people.   When Richard Branson writes a book about entrepreneurship, go read it. Every line in that book is said by one of the greatest entrepreneurs of our time.   When a Chinese millionaire( he claims to be) Youtuber who releases a video titled “Why reading books keeps you broke” and a year later another one “My recommendation of books for grand success” you should be wise to tell him to jump from Victoria Falls.   These self-improvement gurus sell you delusions.   They say they have those little tricks that only they know that if you use, everything in your life will be perfect. Those little tricks. We are just “making of a to-do-list before sleeping” away from becoming the next Bill Gates.   There are no little tricks.   There is no success-mantra.   Self-improvement is a trap for 99% of the people. You can't do that unless you are very, very strong.   If you are looking for easy ways, you will only keep wasting your time forgetting that your time on this planet is limited, as alive humans that is.   Also, I feel that people who claim to read like a book a day or promote it are idiots. You retain nothing. When you do read a good book, you read slow, sometimes a whole paragraph, again and again, dwelling on it, trying to internalize its knowledge. You try to understand. You think. It takes time.   It's better to read a good book 10 times than 1000 stupid ones.   So be choosy. Read from the guys who actually know something, not some wannabe ‘influencers’.   Edit: Think And Grow Rich was written as a result of a project assigned to Napoleon Hill by Andrew Carnegie(the 2nd richest man in recent history). He was asked to study the most successful people on the planet and document which characteristics made them great. He did extensive work in studying hundreds of the most successful people of that time. The result was that little book.   Nowadays some people just study Instagram algorithms and think of themselves as a Dale Carnegie or Anthony Robbins. By Nupur Nishant, Quora Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.