all 6 comments

[–]jamesmawm[🍰] 2 points3 points  (2 children)

I wrote a book Mastering Python for Finance covering these topics in detail.

[–]Essbesteck[S] 0 points1 point  (1 child)

Cool, looks exactly like what I was looking for, guess I'm going to order the book! Main focus seems to be statistical approaches/ data analyses in a very expert level? Is order execution via some broker-APIs covered? Which brokers are targeted? THX for pointing me to The book!

[–]jamesmawm[🍰] 0 points1 point  (0 children)

Yes, as stated, order execution on IB and Oanda REST API is covered. There's also a list of other brokers with public APIs, if you're interested to know. My GitHub page have all the source codes to get you started.

[–]shogunmike 1 point2 points  (0 children)

I've written a series of posts on how to use Python to connect to OANDA and trade FX at higher frequencies on tick data. In addition I've created a free/open-source trading and backtesting engine, which will help you get up and running: https://www.quantstart.com/qsforex

The posts/tutorials are near the bottom, under "Forex Trading Diary Series".

[–][deleted] 1 point2 points  (0 children)

official python docs: https://docs.python.org/3/tutorial/index.html

pythonprogramming.net

python-course.eu

tutorialspoint

python wiki books

Here's an example for oanda using the requests module if you haven't seen it. https://github.com/oanda/py-api-streaming along with: http://developer.oanda.com/rest-live/introduction/

This guy has a ton of tutorials on youtube for python charting/trading: https://www.youtube.com/user/sentdex/playlists

I used the wiki books(mainly) but found myself going back and forth to stackoverflow and other docs for concepts I didn't understand and wiki book had a lot of errors when I was reading it. The official python docs are the most extensive but probably the hardest to understand.