This library is covered by the MIT license for open sourced software which can be found here: https://github.com/Lumiwealth/lumibot/blob/master/LICENSE
Currently Alpaca and Interactive Brokers are available as a brokerage services. This quickstart is about using Alpaca services. After the quickstart will be instructions specific to Interactive Brokers.
- Install the package on your computer
pip install lumibot
- Create an alpaca paper trading account: https://app.alpaca.markets/paper/dashboard/overview
- Copy your API_KEY and API_SECRET from alpaca dashboard and create a credentials.py file in the root directory of this project with the following class:
class AlpacaConfig:
API_KEY = "YOUR ALPACA API KEY"
API_SECRET = "YOUR ALPACA API SECRET"
API_KEY
and API_SECRET
are obtained from alpaca paper trading dashboard: https://app.alpaca.markets/paper/dashboard/overview
- Create your own strategy class (See strategy section) e.g.
class MyStrategy(Startegy)
or import an example from our libraries
from lumibot.strategies.examples import Momentum
- Create another file meant to be the entrypoint of your code e.g. main.py
- import the following modules in your main.py:
# importing the trader class
from lumibot.traders import Trader
# importing the alpaca broker class
from lumibot.brokers import Alpaca
# importing the credential class created in step 2
from credentials import AlpacaConfig
# importing the strategy class created in step 3
from lumibot.strategies.examples import Momentum
- In your main.py, define variables for the budget allocated to your strategy. Additionally, define the destination of the logfile.
budget = 40000
logfile = "logs/test.log"
- Instantiate the
Trader
class and theAlpaca
class like so:
trader = Trader(logfile=logfile)
broker = Alpaca(AlpacaConfig)
The Alpaca
broker class needs your credentials created in step 3 to loging to your paper trading account.
- Instantiate your strategy class like so:
strategy = Momentum(name="momentum", budget=budget, broker=broker)
- Register the strategy within the trader
trader.add_strategy(strategy)
- Run the trader
trader.run_all()
Below an example of main.py:
# main.py
from lumibot.traders import Trader
from lumibot.brokers import Alpaca
from lumibot.strategies.examples import Momentum
from credentials import AlpacaConfig
budget = 40000
logfile = "logs/test.log"
trader = Trader(logfile=logfile)
broker = Alpaca(AlpacaConfig)
strategy = Momentum(name="momentum", budget=budget, broker=broker)
trader.add_strategy(strategy)
trader.run_all()
To trade in your interactive brokers account, you must install Trader Workstation (or Gateway). Instructions for installation can be found here.
Once installed, navigate in Trader Workstation to File/Global Configuration/ then API/Settings
The key settings required to trade using Lumibot are:
- Enable ActiveX and Socket Clients
- Disable Read-Only API
- Socket port
7496
for live trading,7497
for paper account trading.It is highly recommended to thoroughly test your algorithm in paper trading mode before trading live.
- Master API Client ID: You can find in the Trader Workstation by going to File -> Global Configurations -> API -> Settings, then looking for "Master API client ID". This can be any number you choose up to 999. You will use this in your configuration file to log in.
Set up your credentials.py
file as follows:
class InteractiveBrokersConfig:
SOCKET_PORT = 7497
CLIENT_ID = "your Master API Client ID three digit number"
IP = "127.0.0.1"
Set up your entry point file as above, except using Interactive Brokers. Here is an example of a completed file:
# main.py
from lumibot.traders import Trader
from lumibot.brokers import InteractiveBrokers
from lumibot.strategies.examples import Strangle
from credentials import InteractiveBrokersConfig
budget = 40000
logfile = "logs/test.log"
trader = Trader(logfile=logfile)
interactive_brokers = InteractiveBrokers(InteractiveBrokersConfig)
strategy = Strangle(name="option", budget=budget, broker=interactive_brokers)
trader.add_strategy(strategy)
trader.run_all()
You can also see the file simple_start_ib.py
for a working bot
You can also run backtests very easily on your strategies, you do not have to
modify anything in your strategies. (Intraday and options backtests are not available at this time.)
Simply call the backtest()
function on your strategy class. You will also have the
details of your backtest (the portfolio value each day, unspent money, etc)
put into a CSV file in the location of stats_file
.
from lumibot.backtesting import YahooDataBacktesting
from my_strategy import MyStrategy
from datetime import datetime
# Pick the dates that you want to start and end your backtest
# and the allocated budget
backtesting_start = datetime(2020, 1, 1)
backtesting_end = datetime(2020, 12, 31)
budget = 100000
# Run the backtest
stats_file = "logs/my_strategy_backtest.csv"
plot_file = f"logs/my_strategy_backtest.jpg"
MyStrategy.backtest(
"my_strategy",
budget,
YahooDataBacktesting,
backtesting_start,
backtesting_end,
stats_file=stats_file,
plot_file=plot_file,
benchmark_asset="SPY",
)
Lumibot provides a set of several example strategies that you can copy from to create
your own, they are located in lumibot->strategies->examples
. Here is a breakdown of each example strategy:
Allocates the budget by the percent allocations set in self.portfolio and rebalances every self. period days. For example, if there is a budget of $100,000 then the strategy will buy $30,000 SPY, $40,000 TLT, etc. at current default weights in the strategy. The strategy will then buy/sell assets every day depending on self.portfolio_value (the amount of money available in this strategy) so that the target percentages laid out in self.portfolio are achieved.
Buys the best performing asset from self.symbols over self.momentum_length number of minutes. For example, if TSLA increased 0.03% in the past two minutes, but SPY, GLD, TLT and MSFT only increased 0.01% in the past two minutes, then the strategy will buy TSLA.
Buys the best performing asset from self.symbols over self.period number of days. For example, if SPY increased 2% yesterday, but VEU and AGG only increased 1% yesterday, then the strategy will buy SPY.
Buys and sells 10 of self.buy_symbol every day (not meant to make money, just an example). For example, Day 1 it will buy 10 shares, Day 2 it will sell all of them, Day 3 it will buy 10 shares again, etc.
An options strategy trading through Interactive Brokers only. A simple strangle strategy where the bot simultaneously buys an out-of-the-money call and an out-of-the-money put option. The call option's strike price is higher than the underlying asset's current market price, while the put has a strike price that is lower than the asset's market price.
An asset object represents securities such as stocks or options in Lumibot. Attributes that are tracked for assets are:
- symbol(str): Ticker symbol representing the stock or underlying for options. So for
example if trading IBM calls the symbol would just be
IBM
. - asset_type(str): Asset type can be either
stock
oroption
. default:stock
- name(str): Optional to add in the name of the corporation for logging or printout.
- expiration (str): Expiration of the options contract. Format is "YYYYMMDD".
- strike(float): Contract strike price.
- right(str): May enter
call
orput
. - multiplier(float): Contract multiplier to the underlying. (default: 1)
When creating a new security there are two options.
-
Security symbol: It is permissible to use the security symbol only when trading stocks. Lumibot will convert the ticker symbol to an asset behind the scenes.
-
Asset object: Asset objects may be created at anytime for stocks or options. For options asset objects are mandatory due to the additional details required to identify and trade options.
Assets may be created using the create_asset
method as follows:
create_asset(symbol, asset_type=
option, **kwargs)
* see attributes above.
This object is a wrapper around pandas dataframe and contains bars data. The raw pandas dataframe
object corresponds to bars.df
. The dataframe has the following columns
- open
- high
- low
- close
- volume
- dividend
- stock_splits
The dataframe index is of type pd.Timestamp
localized at the timezone America/New_York
.
Bars objects have the following fields:
- source: the source of the data e.g. (yahoo, alpaca, ...)
- symbol: the symbol of the bars
- df: the pandas dataframe containing all the datas
Bars objects has the following helper methods:
get_last_price()
: returns the closing price of the last dataframe rowget_last_dividend()
: returns the dividend per share value of the last dataframe rowget_momentum(start=None, end=None)
: calculates the global price momentum of the dataframe.
When specified, start and end will be used to filter the daterange for the momentum calculation.
If none of start
or end
are specified the momentum will be calculated from the first row untill
the last row of the dataframe.
get_total_volume(start=None, end=None)
: returns the sum of the volume column. Whenstart
and/orend
is/are specified use them to filter for that given daterange before returning the total volumefilter(start=None, end=None)
: Filter the bars dataframe. Whenstart
and/orend
is/are specified use them to filter for that given daterange before returning the total volume
When getting historical data from Interactive Brokers, it is important to note that they do not
consider themselves a data supplier. If you exceed these data access pacing rates, your data
will be throttled. Additionally, with respect to above three mentioned helpers, when using
Interactive Brokers live, tick data is called instead of bar data. This allows for more frequent
and accurate pricing updates. get_last_dividend
are not available in Interactive Brokers. (see
[Interactive Brokers' pacing rules](https://interactivebrokers.github.
io/tws-api/historical_limitations.html))
This object represents an order. Each order belongs to a specific strategy.
A simple market order can be constructed as follows:
symbol = "SPY"
quantity = 50
side = "buy"
order = self.create_order(symbol, quantity, side)
With:
- symbol (str): the string representation of the asset e.g. "GOOG" for Google
- quantity (int): the number of shares to buy/sell
- side (str): must be either
"buy"
for buying order or"sell"
for selling order
Order objects have the following helper methods
to_position()
: convert an order to a position belonging to the same strategy withorder.quantity
amount of shares.get_increment()
: for selling orders returns- order.quantity
, for buying orders returnsorder.quantity
wait_to_be_registered
: wait for the order to be registered by the brokerwait_to_be_closed
: wait for the order to be closed by the broker (Order either filled or closed)
A limit order is an order to buy or sell at a specified price or better.
To create a limit order object, add the keyword parameter limit_price
my_limit_price = 500
order = self.create_order(symbol, quantity, side, limit_price=my_limit_price)
self.submit_order(order)
A stop (market) order is an order to buy or sell a security when its price moves past a particular point, ensuring a higher probability of achieving a predetermined entry or exit price.
To create a stop order object, add the keyword parameter stop_price
.
my_stop_price = 400
order = self.create_order(symbol, quantity, side, stop_price=my_stop_price)
self.submit_order(order)
A stop_limit order is a stop order with a limit price (combining stop orders and limit orders)
To create a stop_limit order object, add the keyword parameters stop_price
and limit_price
.
my_limit_price = 405
my_stop_price = 400
order = self.create_order(symbol, quantity, side, stop_price=my_stop_price, limit_price=my_limit_price)
self.submit_order(order)
Trailing stop orders allow you to continuously and automatically keep updating the stop price threshold based on the stock price movement.
To create trailing_stop orders, add either a trail_price
or a trail_percent
keyword parameter.
my_trail_price = 20
order_1 = self.create_order(symbol, quantity, side, trail_price=my_trail_price)
self.submit_order(order_1)
my_trail_percent = 2.0 # 2.0 %
order_2 = self.create_order(symbol, quantity, side, trail_percent=my_trail_percent)
self.submit_order(order_2)
*** NOTE: Advanced type of orders work as normal in live trading, but will be ignored in backtesting. Meaning that a backtest will assume limit and stop orders were never executed.
A bracket order is a chain of three orders that can be used to manage your position entry and exit.
The first order is used to enter a new long or short position, and once it is completely filled, two conditional exit orders will be activated. One of the two closing orders is called a take-profit order, which is a limit order, and the other closing order is a stop-loss order, which is either a stop or stop-limit order. Importantly, only one of the two exit orders can be executed. Once one of the exit orders fills, the other order cancels. Please note, however, that in extremely volatile and fast market conditions, both orders may fill before the cancellation occurs.
To create a bracket order object, add the keyword parameters take_profit_price
and stop_loss_price
.
A stop_loss_limit_price
can also be specified to make the stop loss order a stop-limit order.
my_take_profit_price = 420
my_stop_loss_price = 400
order = self.create_order(
symbol, quantity, side,
take_profit_price=my_take_profit_price,
stop_loss_price=my_stop_loss_price
)
self.submit_order(order)
Interactive Brokers requires the main or parent order to be a limit order. Add
limit_price=my_limit_price
.
OTO (One-Triggers-Other) is a variant of bracket order. It takes one of the take-profit or stop-loss order in addition to the entry order.
To create an OTO order object, add either a take_profit_price
or a stop_loss_price
keyword parameter.
A stop_loss_limit_price
can also be specified in case of stop loss exit.
Interactive Brokers requires the main or parent order to be a limit order. Add
limit_price=my_limit_price
.
OCO orders are a set of two orders with the same side (buy/buy or sell/sell). In other words, this is the second part of the bracket orders where the entry order is already filled, and you can submit the take-profit and stop-loss in one order submission.
To create an OCO order object, add the keyword parameters take_profit_price
and stop_loss_price
and set position_filled
to True
.
A stop_loss_limit_price
can also be specified to make the stop loss order a stop-limit order.
my_take_profit_price = 420
my_stop_loss_price = 400
order = self.create_order(
symbol, quantity, side,
take_profit_price=my_take_profit_price,
stop_loss_price=my_stop_loss_price,
position_filled=True
)
self.submit_order(order)
Interactive Brokers requires the main or parent order to be a limit order. Add
limit_price=my_limit_price
.
*** NOTE: Orders with legs work as normal in live trading, but will be ignored in backtesting. Meaning that a backtest will never execute the order legs.
This object represents a position. Each position belongs to a specific strategy. Position object has the following properties
- strategy (str): the strategy name that this order belongs to
- symbol (str): the string representation of the asset e.g. "GOOG" for Google
- quantity (int): the number of shares held
- orders (list(order)): a list of orders objects responsible for the current state of the position
Position objects have also the following helper methods
get_selling_order()
: returns an order for selling all the shares attached to this position.
All user defined strategies should inherit from the Strategy class.
from strategies import Strategy
class MyStrategy(Strategy):
pass
The abstract class Strategy
has global parameters with default values, and some
properties that can be used as helpers to build trading logic.
The methods of this class can be split into several categories:
Lifecycle Methods These are executed at different times during the execution of the bot. These represent the main flow of a strategy, some are mandatory.
Strategy Methods These are strategy helper methods.
Broker Methods How to interact with the broker (buy, sell, get positions, etc)
Data Methods How to get price data easily
All the methods in each of these categories are described below.
The abstract class Strategy defines a design pattern that needs to be followed by user-defined strategies. The design pattern was greatly influenced by React.js components and their lifecycle methods.
When building strategies, lifecycle methods needs to be overloaded. Trading logics should be implemented in these methods.
This lifecycle methods is executed only once, when the strategy execution starts. Use this lifecycle method to initialize parameters like:
self.sleeptime
: the sleeptime duration between each trading iteration in minutesself.minutes_before_closing
: number of minutes before the market closes to stop trading
class MyStrategy(Strategy):
def initialize(self, my_custom_parameter=True):
self.sleeptime = 5
self.minutes_before_closing = 15
self.my_custom_parameter = my_custom_parameter
You can also use the initialize method to define custom parameters
like my_custom_parameter
in the example above. You can name these parameters however you'd like, and add as many as you'd like.
These parameters can easily be set using the strategy constructor later on.
strategy_1 = MyStrategy(
name="strategy_1",
budget=budget,
broker=broker,
my_custom_parameter=False,
my_other_parameter=50
)
strategy_2 = MyStrategy(
name="strategy_2",
budget=budget,
broker=broker,
my_custom_parameter=True,
my_last_parameter="SPY"
)
or just for backtesting
options = [True, False]
for option in options:
MyStrategy.backtest(
"my_strategy",
budget,
YahooDataBacktesting,
backtesting_start,
backtesting_end,
stats_file=stats_file,
my_custom_parameter=option,
my_last_parameter="SPY"
)
# `options` in this example is not referring to trading options contracts.
This lifecycle method is executed each day before market opens. If the strategy is first run when the market is already open, this method will be skipped the first day. Use this lifecycle methods to execute business logic before starting trading like canceling all open orders.
class MyStrategy(Strategy):
def before_market_opens(self):
self.cancel_open_orders()
This lifecycle method is similar to before_market_opens. However, unlike before_market_opens, this method will always be executed before starting trading even if the market is already open when the strategy was first launched. After the first execution, both methods will be executed in the following order
- before_market_opens
- before_starting_trading.
Use this lifecycle method to reinitialize variables for day trading like resetting the list of blacklisted shares.
class MyStrategy(Strategy):
def before_starting_trading(self):
self.blacklist = []
This lifecycle method contains the main trading logic.
When the market opens, it will be executed in a loop.
After each iteration, the strategy will sleep for self.sleeptime
minutes.
If no crash or interuption, the loop will be stopped
self.minutes_before_closing
minutes before market closes and will restart
on the next day when market opens again.
class MyStrategy(Strategy):
def on_trading_iteration(self):
# pull data
# check if should buy an asset based on data
# if condition, buy/sell asset
pass
This lifecycle method is executed self.minutes_before_closing
minutes before the market closes.
Use this lifecycle method to execute business logic like selling shares and closing open orders.
class MyStrategy(Strategy):
def before_market_closes(self):
self.sell_all()
This lifecycle method is executed right after the market closes.
class MyStrategy(Strategy):
def after_market_closes(self):
pass
Lifecycle method that will be executed after on_trading_iteration.
context is a dictionary containing the result of locals()
of on_trading_iteration()
at the end of its execution.
locals()
returns a dictionary of the variables defined in the
scope where it is called.
Use this method to dump stats
import random
class MyStrategy(Strategy):
def on_trading_iteration(self):
google_symbol = "GOOG"
def trace_stats(self, context, snapshot_before):
print(context)
# printing
# { "google_symbol":"GOOG"}
random_number = random.randint(0, 100)
row = {"my_custom_stat": random_number}
return row
This lifecycle method runs when the strategy execution gets interrupted. Use this lifecycle method to execute code to stop trading gracefully like selling all assets
class MyStrategy(Strategy):
def on_abrupt_closing(self):
self.sell_all()
This lifecycle method runs when the strategy crashes. By default, if not overloaded, it calls on_abrupt_closing.
class MyStrategy(Strategy):
def on_bot_crash(self, error):
self.on_abrupt_closing()
This lifecycle method runs when a new order has been successfully submitted to the broker. Use this lifecycle event to execute code when the broker processes a new order.
Parameters:
- order (Order): The corresponding order object processed
class MyStrategy(Strategy):
def on_new_order(self, order):
self.log_message("%r is currently being processed by the broker" % order)
The lifecycle method called when an order has been successfully canceled by the broker. Use this lifecycle event to execute code when an order has been canceled by the broker
Parameters:
- order (Order): The corresponding order object that has been canceled
class MyStrategy(Strategy):
def on_canceled_order(self, order):
self.log_message("%r has been canceled by the broker" % order)
The lifecycle method called when an order has been partially filled by the broker. Use this lifecycle event to execute code when an order has been partially filled by the broker.
Parameters:
- order (Order): The order object that is being processed by the broker
- price (float): The filled price
- quantity (int): The filled quantity
- multiplier (int): Options multiplier
class MyStrategy(Strategy):
def on_partially_filled_order(self, order, price, quantity, multiplier):
missing = order.quantity - quantity
self.log_message(f"{quantity} has been filled")
self.log_message(f"{quantity} waiting for the remaining {missing}")
The lifecycle method called when an order has been successfully filled by the broker. Use this lifecycle event to execute code when an order has been filled by the broker
Parameters:
- position (Position): The updated position object related to the order symbol.
If the strategy already holds 200 shares of SPY and 300 has just been filled,
then
position.quantity
will be 500 shares otherwise if it is a new position, a new position object will be created and passed to this method. - order (Order): The corresponding order object that has been filled
- price (float): The filled price
- quantity (int): The filled quantity
- multiplier (int): Options multiplier
class MyStrategy(Strategy):
def on_filled_order(self, position, order, price, quantity, multiplier):
if order.side == "sell":
self.log_message(f"{quantity} shares of {order.symbol} has been sold at {price}$")
elif order.side == "buy":
self.log_message(f"{quantity} shares of {order.symbol} has been bought at {price}$")
self.log_message(f"Currently holding {position.quantity} of {position.symbol}")
Logs an info message prefixed with the strategy name
When a strategy is instantiated, a broker object is passed to it (Check Quickstart).
The strategy is run with the passed broker object.
The following shortcuts executes broker methods within the strategy. Some methods
can use either a symbol
or an asset
object. Please see asset.
Sleeps for sleeptime
seconds
Parameters:
- sleeptime (float): The sleep duration in seconds
If the market is closed, pauses code execution until self.minutes_before_opening
minutes
before market opens again. If an input (float) is passed as parameter, pauses code execution until
input
minutes before market opens again.
Parameters:
- timedelta (float): Duration in minutes
Return type: None
If the market is open, pauses code execution until self.minutes_before_closing
minutes
before market closes. If an input (float) is passed as parameter, pauses code execution until
input
minutes before market closes again.
Parameters:
- timedelta (float): Duration in minutes
Return type: None
Return the strategy tracked position for a given symbol if found else None
.
Parameters:
- symbol (str): The share/asset string representation (e.g AAPL, GOOG, ...)
Return type: position
Return all the strategy tracked positions.
Return type: list(position)
Return the strategy tracked order with the specified identifier if found else None
.
Parameters:
- identifier (str): The broker order identifier
Return type: order
Return all the strategy tracked orders.
Return type: list(order)
Return the strategy list of symbols for all tracked positions and orders.
Return type: list(str/asset)
Check the ongoing positions and the tracked orders of the strategy and returns the total number of shares provided all orders went through. In other words, add all outstanding orders and the total value of the position for an asset.
For example, if you own 100 SPY and have an outstanding limit order of 10 shares, we will count all 110 shares.
Parameters:
- symbol (str/asset): the string representation of the share/asset
Return type: int
Create an order object attached to this strategy (Check the Entities, order section)
Required Parameters:
- symbol (str/asset): representation of the asset to buy
- quantity (int): the quantity of the asset to buy
- side (str): either
"buy"
or"sell"
Optional Parameters:
- limit_price (default = None)
- stop_price (default = None)
- time_in_force (default = "day")
- take_profit_price (default = None),
- stop_loss_price (default = None),
- stop_loss_limit_price (default = None),
- trail_price (default = None),
- trail_percent (default = None),
- position_filled (default = None),
*** NOTE: Limit and stop orders work as normal in live trading, but will be ignored in backtesting. Meaning that a backtest will assume limit and stop orders were never executed.
Return type: order
class MyStrategy(Strategy):
def on_trading_iteration(self):
# Buy 100 shares of SPY
order = self.create_order("SPY", 100, "buy")
self.submit_order(order)
For a limit order:
class MyStrategy(Strategy):
def on_trading_iteration(self):
# Buy 100 shares of SPY
order = self.create_order("SPY", 100, "buy", limit_price=100)
self.submit_order(order)
Submit an order. Returns the processed order.
Parameters:
- order (order): the order object
Return type: order
class MyStrategy(Strategy):
def my_function(self):
# Sell 100 shares of TLT
order = self.create_order("TLT", 100, "sell")
self.submit_order(order)
Submit a list of orders
Parameters:
- orders (list(order)): the list of orders
Return type: list(order)
Wait for the order to be registered by the broker
Parameters:
- order (order): the order object
Return type: None
Wait for the order to execute/be canceled
Parameters:
- order (order): the order object
Return type: None
Wait for the orders to be registered by the broker
Parameters:
- orders (list(order)): the list of orders
Return type: None
Wait for the orders to execute/be canceled
Parameters:
- orders (list(order)): the list of orders
Return type: None
Cancel an order.
Parameters:
- order (order): the order to cancel
Return type: None
Cancel a list of orders
Parameters:
- orders (list(order)): the list of orders to cancel
Return type: None
Cancel all the strategy open orders
Return type: None
Sell all strategy current positions
Return type: None
class MyStrategy(Strategy):
# Will sell all shares that the strategy is tracking on Ctrl + C
def on_abrupt_closing(self):
self.sell_all()
Return the last known price for a given symbol
Parameters:
- symbol (str/asset): the string representation of the asset/share
Return type: float
symbol = "SPY"
current_price = self.get_last_price(symbol)
logging.info(f"The current price of {symbol} is {current_price}")
Return the last known prices for a list symbols
Parameters:
- symbols (list(str/asset)): list of share/asset representations
Return type: dict of str:float or asset:asset object
Return the list of tradable assets for the used broker
Return type: list(str/asset)
For a given symbol/asset, returns the full options chain for all exchanges.
Parameters: symbol/asset
Return type: Dictionary with exchanges
as keys, chain dictionary
as value.
Returns an option chain for one symbol on one exchange.
Parameters: chains, exchange='SMART'
Returns: Dictionary with:
- Underlying_conid: Contract ID with Interactive Brokers.
- TradingClass: Stock symbol
- Multiplier: Option leverage multiplier.
- Expiration: Set of expiration dates. Format 'YYYYMMDD'
- Strikes: Set of strike prices.
Retrieves all of the expiration dates for an option chain, sorted by date.
Parameters: chains, exchange='SMART'
Returns: list of expirations date in the format "YYYYMMDD"
asset = self.create_asset("FB")
chains = self.get_chains(asset)
chain = self.get_chain(chains)
expiration = self.get_expiration(chains)
When a strategy is instantiated, a broker object is passed to it (Check Quickstart). A data_source object can also be passed. When passed, the data_source will be used for extracting bars and data. If not specified, the strategy will use the broker passed as the default data source.
The following shortcuts executes data sources methods within the strategy.
Return the current datetime localized the datasource timezone e.g. America/New_York
.
During backtesting this will be the time that the strategy thinks that it is.
Return type: datetime
print(f"The current time is {self.get_datetime()}")
Return the current UNIX timestamp. During backtesting this will be the UNIX timestamp that the strategy thinks that it is.
Return type: float
print(f"The current time is {self.get_timestamp()}")
Returns a minute rounded datetime object.
Optional Parameters:
- timeshift (int): a timeshift in minutes from the present.
Example:
# Return a midnight rounded datetime object of three minutes ago
dt = self.get_round_minute(timeshift=3)
print(dt)
# datetime.datetime(2021, 2, 21, 9, 17, tzinfo=<DstTzInfo 'America/New_York' EST-1 day, 19:00:00 STD>)
Return type: datetime
Returns the last minute rounded datetime object. Shortcut to straregy.get_round_minute(timeshift=1)
Return type datetime.
Returns a day rounded datetime object.
Optional Parameters:
- timeshift (int): a timeshift in days from the present.
Example:
# Return a midnight rounded datetime object of three days ago
dt = self.get_round_day(timeshift=3)
print(dt)
# datetime.datetime(2021, 2, 21, 0, 0, tzinfo=<DstTzInfo 'America/New_York' EST-1 day, 19:00:00 STD>)
Return type datetime
Returns the last day rounded datetime object. Shortcut to straregy.get_round_day(timeshift=1)
Return type datetime.
Takes as input length, timestep and timeshift and returns a tuple of datetime representing the start date and end date.
Parameters:
- length (int): represents the number of bars required
- timestep (str): represents the timestep, either
minute
(default value) orday
. - timeshift (timedelta):
None
by default. If specified indicates the time shift from the present.
Return type datetime
Converts an unaware datetime object (datetime object without a timezone) to an aware datetime object.
The default timezone is America/New_York
.
Parameter:
- dt (datetime): the datetime object to convert.
Example:
from datetime import datetime
dt = datetime(2021, 2, 21)
print(dt)
# datetime.datetime(2021, 2, 21, 0, 0)
dt_aware = self.localize_datetime(dt)
print(dt_aware)
# datetime.datetime(2021, 2, 21, 0, 0, tzinfo=<DstTzInfo 'America/New_York' EST-1 day, 19:00:00 STD>)
Return type: datetime
Transpose an aware datetime object to the default timezone America/New_York
.
Parameter:
- dt (datetime): the datetime object to convert.
Return type: datetime
Return bars for a given symbol.
Parameters:
- symbol (str/asset): The symbol string representation (e.g AAPL, GOOG, ...) or asset object.
- length (int): The number of rows (number of timestamps)
- timestep (str): Either
"minute""
for minutes data or"day""
for days data default value depends on the data_source (minute for alpaca, day for yahoo, ...) - timeshift (timedelta):
None
by default. If specified indicates the time shift from the present.
Example:
from datetime import timedelta
#...
# Extract 10 rows of SPY data with one minute timestep between each row
# with the latest data being 24h ago (timedelta(days=1))
bars = self.get_symbol_bars("SPY",10,"minute",timedelta(days=1))
Return type: bars
Return a dictionary of bars for a given list of symbols. Works the same as get_symbol_bars but take as first parameter a list of symbols.
Parameters:
- symbol (list(str/asset)): The symbol string representation (e.g AAPL, GOOG, ...) or asset object.
- length (int): The number of rows (number of timestamps)
- timestep (str): Either
"minute""
for minutes data or"day""
for days data default value depends on the data_source (minute for alpaca, day for yahoo, ...) - timeshift (timedelta):
None
by default. If specified indicates the time shift from the present.
Return type: dict of str/asset:bars
Return dividend per share for the day before for a given symbol
Parameters:
- symbol (str/asset): The symbol string representation (e.g AAPL, GOOG, ...) or asset object.
Return type: float or asset object
Return dividend per share for the day before for a given list of symbols. Works the same as get_yesterday_dividend but take as parameter a list of symbols.
Parameters:
- symbol (str/asset): The symbol string representation (e.g AAPL, GOOG, ...) or asset object.
Return type: dict of str:float
A strategy object has the following properties:
-
name: indicates the name of the strategy.
-
initial budget: indicates the initial budget
-
minutes_before_closing. The lifecycle method on_trading_iteration is executed inside a loop that stops only when there is only
minutes_before_closing
minutes remaining before market closes. By default equals to 5 minutes. This value can be overloaded when creating a strategy class in order to change the default behaviour. Another option is to specify it when creating an instance the strategy classmy_strategy = MyStrategy("my_strategy", budget, broker, minutes_before_closing=15)
-
minutes_before_opening. The lifecycle method before_market_opens is executed
minutes_before_opening
minutes before the market opens. By default equals to 60 minutes. This value can be overloaded when creating a strategy class in order to change the default behaviour. Another option is to specify it when creating an instance the strategy classmy_strategy = MyStrategy("my_strategy", budget, broker, minutes_before_opening=15)
-
sleeptime: Sleeptime in seconds or minutes after executing the lifecycle method on_trading_iteration. By default equals 1 minute. You can set the sleep time as an integer which will be interpreted as minutes. eg: sleeptime = 50 would be 50 minutes. Conversely, you can enter the time as a string with the duration numbers first, followed by the time units: 'M' for minutes, 'S' for seconds eg: '300S' is 300 seconds, '10M' is 10 minutes. Only "S" and "M" are allowed.
This value can be overloaded when creating a strategy class in order to change the default behaviour. Another option is to specify it when instantiating the strategy class
my_strategy = MyStrategy("my_strategy", budget, broker, sleeptime=2)
-
parameters: a dictionary that contains keyword arguments passed to the constructor. These keyords arguments will be passed to the
self.initialize()
lifecycle method -
is_backtesting: A boolean that indicates whether the strategy is run in live trading or in backtesting mode.
-
portfolio_value: indicates the actual values of shares held by the current strategy plus the total unspent money.
-
unspent_money: indicates the amount of unspent money from the initial budget allocated to the strategy. This property is updated whenever a transaction was filled by the broker or when dividends are paid.
-
first_iteration: is
True
if the lifecycle methodon_trading_iteration
is being excuted for the first time. -
timezone: The string representation of the timezone used by the trading data_source. By default
America/New_York
. -
pytz: the
pytz
object representation of the timezone property.