ERROR: JAVASCRIPT DESACTIVADO. Este sitio web requiere la ejecución de JavaScript. Para activar JavaScript deberá cambiar la aconfiguración de su navegador.

ERROR: JAVASCRIPT DISABLED. This website requieres to execute JavaScript. In order to enable JavaScript you must change your browser settings.

Team

We are... mathematicians. software engineers. entrepreneurs.

We are mathematicians, software engineers, and seasoned entrepreneurs. While we understand the technical intricacies of financial engineering and business prudence, our ethos is predicated on our mission-driven, longitudinal goals. It is this qualitative lens that allows us to make strategic, sustainable asset-allocation decisions and deliver for our investors.

Leadership

Junaid Ghauri
Junaid Ghauri

Chief Investment Officer

As Chief Investment Officer of Pareto Technologies, Junaid leads all investment and operational aspects of the firm. Prior to founding Pareto Technologies, he has held both technical and executive leadership roles in industries ranging from advertising to analytics. During his early career, he worked as a public sector climate scientist and private sector data scientist. Junaid is also an advisor to early stage, deep-tech and blockchain start-ups.

Junaid holds a Master of Science in Computational and Applied Mathematics from Johns Hopkins University and a Bachelor of Science in Physics from George Washington University.

Zachary Lee
Zachary Lee

Chief Technology Officer

As Chief Technology Officer of Pareto Technologies, Zachary leads technical research and development of supportive infrastructure. Zachary’s experience focuses on maintaining event-driven backtest environments and associated execution systems for quantitative hedge funds trading equities and cryptocurrencies. More recently, he has focused on productionizing mid and high-frequency automated and semi-automated trading strategies for CME futures and crypto exchanges (Python and C#).

Zachary studied Computer Science at the University of Rochester.

Team

Constantine Papanicolaou
Constantine Papanicolaou

Portfolio Manager

Head of Trading at Alken Asset Management with 13+ years experience in global macro strategies and risk management.

MS in Finance from London School of Economics.

Rocky Lin
Rocky Lin

Head of Business Development

Specializes in investor relations and capital partnerships for quantitative strategies at Halborn.

MS in Applied Mathematics from Northeastern University.

Edwin Jeyakumar
Edwin Jeyakumar

Quantitative Trader

Quantitative Trader at Pareto Technologies specializing in algorithmic strategies and portfolio optimization.

MFE from UCLA Anderson, BS from National University of Singapore.

Zak Houssam
Zak Houssam

Portfolio Manager

Develops crypto trading systems and machine learning models for market analysis at theCryppa.

Data Science Diploma from Concordia University.

var TxtRotate = function(el, toRotate, period) { this.toRotate = toRotate; this.el = el; this.loopNum = 0; this.period = parseInt(period, 10) || 2000; this.txt = ''; this.tick(); this.isDeleting = false; }; TxtRotate.prototype.tick = function() { var i = this.loopNum % this.toRotate.length; var fullTxt = this.toRotate[i]; if (this.isDeleting) { this.txt = fullTxt.substring(0, this.txt.length - 1); } else { this.txt = fullTxt.substring(0, this.txt.length + 1); } this.el.innerHTML = ''+this.txt+''; var that = this; var delta = 300 - Math.random() * 100; if (this.isDeleting) { delta /= 2; } if (!this.isDeleting && this.txt === fullTxt) { delta = this.period; this.isDeleting = true; } else if (this.isDeleting && this.txt === '') { this.isDeleting = false; this.loopNum++; delta = 500; } setTimeout(function() { that.tick(); }, delta); }; window.onload = function() { var elements = document.getElementsByClassName('txt-rotate'); for (var i=0; i