Machine Learning for Trading
Författare
Ryan Babaie and Neil Hardy
Last Updated
för 8 år sedan
Licens
Creative Commons CC BY 4.0
Sammanfattning
Document describing basic economic and statistical analysis and how to apply them to machine learning
Document describing basic economic and statistical analysis and how to apply them to machine learning
\documentclass[11pt,fancychapters]{report}
\usepackage[a4paper, total={6in, 8in}]{geometry}
\usepackage{listings}
\usepackage{color}
\usepackage{setspace}
\usepackage{hyperref}
\usepackage{acro}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{subcaption}
\usepackage{cancel}
\usepackage{tikz}
\usepackage{color}
\usetikzlibrary{calc,trees,positioning,arrows,chains,shapes.geometric,%
decorations.pathreplacing,decorations.pathmorphing,shapes,%
matrix,shapes.symbols}
\include{acronyms}
\geometry{top=1.3in,bottom=1.3in}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\definecolor{DarkerGreen}{RGB}{0,179,45}
\include{python_highlighting}
\newtheorem{exmp}{Example}[section]
\newcommand{\codeExample}[2]{
\begin{exmp}
#1
\noindent\begin{minipage}{\linewidth}
\begin{lstlisting}[style=python]
#2
\end{lstlisting}
\end{minipage}
\end{exmp}
}
\newcommand\MyLBrace[2]{%
\left.\rule{0pt}{#1}\right\}\text{#2}}
\tikzset{
>=stealth',
punktchain/.style={
rectangle,
rounded corners,
% fill=black!10,
draw=black, very thick,
text width=10em,
minimum height=3em,
text centered,
on chain},
line/.style={draw, thick, <-},
element/.style={
tape,
top color=white,
bottom color=blue!50!black!60!,
minimum width=8em,
draw=blue!40!black!90, very thick,
text width=10em,
minimum height=3.5em,
text centered,
on chain},
every join/.style={->, thick,shorten >=1pt},
decoration={brace},
tuborg/.style={decorate},
tubnode/.style={midway, right=2pt},
}
\title{Machine Learning for Trading}
\author{your mom \\ Ryan Babaie \\ Neil Hardy}
\date{December 30, 2015}
\begin{document}
\maketitle
\pagenumbering{gobble}
\newpage
\pagenumbering{roman}
\tableofcontents
\newpage
\pagenumbering{arabic}
\include{dataframes}
\include{statistics}
\include{essential}
\include{algorithms}
\appendix
\include{appendix}
\end{document}