Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 2.24 KB

syntax.md

File metadata and controls

62 lines (44 loc) · 2.24 KB

Alpha Compiler

Given an alpha equation, this tool generates Python code to be used on Quantopian's platform or in Zipline. The code generated can be cut and pasted directly into your Quantopian code. For examples of how to use factors and the necessary includes, please see the latest notebook posted here. The code genrates a custom factor named AlphaX, if you are going to use multiple alpha factors generated here you will need to change the name of AlphaX to something unique for each factor.

Syntax

The syntax is inspired by the document 101 Formulaic Alphas by Zura Kakushadze. I recommend you read that paper if you creating your own alphas.

Inputs

The following can be used as inputs:

  • open, high, low, close, volume
  • returns
  • cap
  • vwap It should be noted that Quantopian's VWAP is not computed the same way that the rest of the industry compues VWAP. On Quantopian's platform VWAP is treated as another factor and uses daily price and volume.
  • adv* where * is an integer. For example: adv8 computes the ADV over the last 8 days.

Unirary Operators

  • abs
  • sign
  • rank

Binary Operators

  • The usual infix algebraic operators can be used: +,-,/,*
  • Logical infix operators can be used as well: >,<, ||, &&
  • max
  • min
  • scale
  • signedpower
  • indneutralize

Ternary Operator

  • A ? Y : Z This is the C-style ternary operator that is shorthand for if A then Y else Z.

Time-Series Operators

The time-series operators as a special case of binary operators where the last argument is the number of days. In the inspiration paper this could be any positive real number, but it this implementation the number needs to be a positive integer. For example the delay(sig, N) operator will return a version of the sig data delayed N days.

Binary Time-Series Operators

  • delay
  • delta
  • ts_min
  • ts_max
  • ts_argmin
  • ts_argmax
  • decay_linear
  • ts_rank
  • sum
  • product
  • stddev

Ternary Time-Series Operators

  • correlation
  • covariance