• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

What kind of programming will I need to know for quantitative trading?

Joined
5/23/23
Messages
1
Points
1
For context, I am going to a quantitative trading internship soon, but am not sure what kind of coding I will be required to do. Could anyone shed more light on what the day-to-day looks like for a trader regarding what they have to code?
 

Of course, Python doesn't engender good programming practices. Eventually, it becomes unmaintainable which may or may not be serious. But for POC and throwaway prototypes it is a good scripting language.
 
Last edited:
I was always confused why in Python you have to import a library to create abstract classes (and what was it anyways?) before I understood pure virtual functions
In my experience 90% of OOP in Python is a load of (unmaintainable) junk. I can give at least 10 reasons.

On the other hand, Python OOP is a nice medium when you want to learn how design patterns work. Having done that, you can port/rewrite the patterns in C++.
 
In my experience 90% of OOP in Python is a load of (unmaintainable) junk. I can give at least 10 reasons.

On the other hand, Python OOP is a nice medium when you want to learn how design patterns work. Having done that, you can port/rewrite the patterns in C++.
Can you give those reasons please. :)
 
Depends on the shop but coding might not be as emphasized as you think for a quant trader on a non D1 desk. The minority of quant traders that do actively code mainly use Python (and Excel).
 
Can you give those reasons please. :)
Well, OOP and inheritance is an optimisation step ... it is neither necessary not sufficient for successful software.
A more maintainable solution is Composition (for structure) and FP for behaviour.

OOP in Python seems to be an add on? (abc module) and is not a good implementation ... probably OOP is not really suitable for dynamically typed languages. It even supports Multiple Inheritance.

Encapsulation and Information Hiding are a challenge in Python.
 
Last edited:
Back
Top