Skip to content

Instantly share code, notes, and snippets.

View memonkey01's full-sized avatar
💭
Just learning...

PyPro memonkey01

💭
Just learning...
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@memonkey01
memonkey01 / project4.py
Created March 9, 2018 21:59
Project 4 Masters
from __future__ import division
import numpy as np
import pandas as pd
import matplotlib
import matplotlib.pyplot as plt
from pandas_datareader import data as pdr
from datetime import date, timedelta
import matplotlib.mlab as mlab
from scipy import stats
import statsmodels.api as sm
# -*- coding: utf-8 -*-
"""
Volatilidad Implicita - Vega - Metodo de Newton
Autor: Guillermo Izquierdo
Este código es para fines educativos exclusivamente
"""
#Importamos librerias
from math import log,exp,sqrt
# -*- coding: utf-8 -*-
"""
Precios y Distribución Log Normal
Autor: Guillermo Izquierdo
Este código es para fines educativos exclusivamente
"""
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
@memonkey01
memonkey01 / normal_check.py
Created December 13, 2017 18:37
Revisar si una serie tiene una distribución normal
# -*- coding: utf-8 -*-
"""
Retornos y Distribución Normal
Autor: Guillermo Izquierdo
Este código es para fines educativos exclusivamente
"""
import numpy as np