# About me
class QuantitativeResearcher:
def __init__(self):
self.name = "Juraj Zelman"
self.role = "Quantitative Researcher"
self.uni = "ETH Zürich & UZH, Charles University"
def get_interests(self):
self.finance = "Alpha Research, Portfolio Optimization, Market Making"
self.comp_science = "Statistical Learning, (Deep) Reinforcement Learning"
self.math = "Statistics, Math. Finance, Numerical Methods, Optimal Control"
return f"{finance} and {comp_science} and {math}"
def say_hi(self):
print("Thanks for stopping by, hope you find some of my (public) work interesting!")
me = QuantitativeResearcher()
me.say_hi()
