Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Unreasonable Return Rates?

Hi, I'm new to quantopian and recently wrote my first simple algo. Seeing that my dad is in the finance and economics field and that I have some common sense, I began to think that a 95870.2% return rate with a 6335.3% drawdown didn't seem reasonable on a 100$ investment.

Can someone explain to me what exactly drawdown is, how my return rate is effected by this, and what exactly could be causing this unreasonable return rate?

Thanks.

2 responses

Drawdown is how much your equity decreases from its peak. Your huge return is probably due to large amounts of leverage that wouldn't be possible in real trading. If you're using the "order" method, try "order_target_percent" instead. You can track your leverage with: record(leverage=context.leverage)

Make sure you aren't over ordering. I agree with Michael above. Use the order_target_percentage of 1 and -1 depending on whether you're going long or short 100%. Use less if you prefer like 0.5 etc.