In previous posts I have demonstrated how you can query stock price data with e.g. pandas_datareader in Python. In this post I will present an algorithm with which you can construct an efficient portfolio based on any set of stocks […]
A quick post on how to query data from Quandl in Python. Quandl can be installed with the “pip install” command in your command prompt. For this simply type “pip install quandl” in your Anaconda command prompt. Quandl is the […]
This post provides an introductionary documentation for getting started with NumPy in Python. # importing numpy into this python script import numpy # building some lists and adding them with Python base library a = [1,2,3] b = [1,2,3] a+b […]
Besides Pandas and Seaborn I would also like to provide you with a brief introduction to matplotlib. Matplotlib is another important module and library in Python. It is used for data visualization. Below coding example will get you started. The […]