Skip to content

Instantly share code, notes, and snippets.

View memonkey01's full-sized avatar
馃挱
Just learning...

PyPro memonkey01

馃挱
Just learning...
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# -*- coding: utf-8 -*-
"""
Graficando el IPC y otras acciones
Autor: Guillermo Izquierdo
Este c贸digo es para fines educativos
"""
import pandas_datareader as pdr
import matplotlib.pyplot as plt
# -*- coding: utf-8 -*-
"""
Introducci贸n a los Algoritmos Geneticos
Autor: Guillermo Izquierdo
Este c贸digo es para fines educativos exclusivamente.
"""
geneSet = 'abcdefghijklmn帽opqrstuvwxyzABCDEFGHIJKLMN脩OPQRSTUVWXYZ '
target = 'Hola Mundo'
# -*- coding: utf-8 -*-
"""
Calculando Beta
Autor: Guillermo Izquierdo
Este c贸digo es para fines educativos
"""
import matplotlib
import pandas_datareader as pdr
import matplotlib.pyplot as plt
@memonkey01
memonkey01 / BlackScholes.py
Created December 13, 2017 17:22
BlackScholes
# -*- coding: utf-8 -*-
"""
Black-Scholes
Autor: Guillermo Izquierdo
Este c贸digo es para fines educativos exclusivamente
"""
from math import log, sqrt, exp
from scipy import stats
#Definimos nuestros parametros iniciales
@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
# -*- 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
# -*- 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
@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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.