El sitio web de tnotstar

Quantopian’s Getting Started Tutorial

Fuente: https://www.quantopian.com/tutorials/getting-started

Lession 1: Introduction

What is a Trading Algorithm?

Un algoritmo de trading en Quantopian consiste en dos funciones: initialize y handle_data:

def initialize(context):
    # your code here

def handle_data(context, data):
    # your code here

Lession 2: Core Fuctions

Core Functions

Aparte de las dos funciones anteriores, la función opcional before_trading_start completa el grupo de las llamadas funciones core (core functions). Las funciones core se encargan de:

Lession 3: Referencing Securities

Referencing Securities

TODO