Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """ | |
| Retornos y Distribuci贸n Normal | |
| Autor: Guillermo Izquierdo | |
| Este c贸digo es para fines educativos exclusivamente | |
| """ | |
| import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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.
OlderNewer