Skip to content

Instantly share code, notes, and snippets.

View aa403's full-sized avatar
πŸŒ’
phoenixing

aa403

πŸŒ’
phoenixing
View GitHub Profile

Executive Program in Algorithmic Trading (QuantInsti)

Python Sessions by Dr. Yves J. Hilpisch | The Python Quants GmbH

Online, 07. & 08. April 2018

Risk Parity & Budgeting

With Python

Dr. Yves J. Hilpisch | The Python Quants & The AI Machine

Python for Quant Finance Meetup, London, 16. November 2022

(short link to this Gist: http://bit.ly/pqf_risk)

Algorithmic Trading

In Less Than 100 Lines of Python Code

Dr. Yves J. Hilpisch | The Python Quants GmbH

Online, February 2021

(short link to this Gist: http://bit.ly/algo_100_code)

DIY Quant Investing

DIY Quantitative Stock Market Investing

Dr. Yves J. Hilpisch | The Python Quants & The AI Machine

Saarbruecken, 6. SaarPython Meetup, 30. August 2022

(short link to this Gist: http://bit.ly/spm_diy)

@aa403
aa403 / 00_cqf_ml_elective.md
Created November 10, 2024 20:26 — forked from yhilpisch/00_cqf_ml_elective.md
Machine Learning for Finance | Dr. Yves J. Hilpisch | CQF Elective | London, 23. May 2017

Machine Learning for Finance

A CQF elective with Dr. Yves J. Hilpisch, The Python Quants GmbH

General resources:

AI-Powered Algorithmic Trading with Python

ODSC London 2023 Half-Day Training

Dr. Yves J. Hilpisch
CEO The Python Quants | The AI Machine
Adjunct Professor of Computational Finance

Keybase proof

I hereby claim:

  • I am aa403 on github.
  • I am aa403 (https://keybase.io/aa403) on keybase.
  • I have a public key ASACDccHulKGYnwAEBZINlqI_pDtcRxLJMb44WWzLm55PQo

To claim this, I am signing this object:

import collections
class DictProxy(collections.Mapping):
"""
A proxy for a dictionary that allows attribute access to underlying keys.
You may pass a custom ``wrapper`` to override the logic for wrapping
various custom types.
"""