Asset#

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, option, future, forex. default: stock

  • name(str): Optional to add in the name of the corporation for logging or printout.

Options Only

  • expiration (str): Expiration of the options contract. Format is datetime.date().

  • strike(float): Contract strike price.

  • right(str): May enter call or put.

  • multiplier(float): Contract multiplier to the underlying. (default: 1)

Futures Only

Set up a futures contract using the following:

  • symbol(str): Ticker symbol for the contract, > eg: ES

  • asset_type(str): “future”

  • nexpiration(str): Expiry added as datetime.date() So June 2021 would be datetime.date(2021, 6, 18)`

Forex Only

  • symbol(str): Currency base: eg: EUR

  • currency(str): Conversion currency. eg: GBP

  • asset_type(str): “forex”

When creating a new security there are two options.

  1. 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.

  2. Asset object: Asset objects may be created at anytime for stocks or options. For options, futures, or forex asset objects are mandatory due to the additional details required to identify and trade these securities.

Assets may be created using the Asset() method as follows: Asset(symbol, asset_type=option, **kwargs) * see attributes above.

Examples:

For stocks:

from lumibot.entities import Asset

asset = Asset('SPY', asset_type=Asset.AssetType.STOCK)
order = self.create_order(asset, 10, "buy")
self.submit_order(order)

For futures:

from lumibot.entities import Asset

asset = Asset(
'ES', asset_type=Asset.AssetType.FUTURE, expiration=datetime.date(2021, 6, 18)
)
order = self.create_order(asset, 10, "buy")
self.submit_order(order)

Documentation#

class entities.asset.Asset(symbol: str, asset_type: str = 'stock', expiration: date = None, strike: float = 0.0, right: str = None, multiplier: int = 1, precision: str = None)#

Bases: object

This is a base class for Assets including stocks, futures, options, forex, and crypto.

Parameters:
  • symbol (str) – Symbol of the stock or underlying in case of futures/options.

  • asset_type (str) – Type of the asset. Asset types are only ‘stock’, ‘option’, ‘future’, ‘forex’, ‘crypto’ default : ‘stock’

  • expiration (datetime.date) – Option or futures expiration. The datetime.date will be converted to broker specific formats. IB Format: for options “YYYYMMDD”, for futures “YYYYMM”

  • strike (str) – Options strike as string.

  • right (str) – ‘CALL’ or ‘PUT’ default : “”

  • multiplier (int) – Price multiplier. default : 1

symbol#

The symbol used to retrieve stock quotes if stock. The underlying symbol if option. For Forex: The base currency.

Type:

string (required)

asset_type#

One of the following: - ‘stock’ - ‘option’ - ‘future’ - ‘forex’ - ‘crypto’

Type:

(string, default: stock)

expiration#

Contract expiration dates for futures and options.

Type:

datetime.date (required if asset_type is ‘option’ or ‘future’)

strike#

Contract strike price.

Type:

float (required if asset_type is ‘option’)

right#

Option call or put.

Type:

str (required if asset_type is ‘option’)

multiplier#

Contract leverage over the underlying.

Type:

int (required if asset_type is ‘forex’)

precision#

Conversion currency.

Type:

str (required if asset_type is ‘crypto’)

_asset_types#

Acceptable asset types.

Type:

list of str

_right#

Acceptable values for right.

Type:

list of str

asset_type_must_be_one_of(@"asset_type")#

validates asset types.

right_must_be_one_of(@"right")#

validates rights types.

Example

>>> # Create an Asset object for a stock.
>>> from lumibot.entities import Asset
>>> asset = Asset(symbol="AAPL")
>>> # Create an Asset object for a futures contract.
>>> from lumibot.entities import Asset
>>> asset = Asset(symbol="ES", asset_type='future', expiration=datetime.date(2021, 12, 17))
>>> # Create an Asset object for an options contract.
>>> from lumibot.entities import Asset
>>> asset = Asset(
>>>     symbol="AAPL",
>>>     asset_type='option',
>>>     expiration=datetime.date(2021, 11, 26),
>>>     strike=155,
>>>     right= 'CALL',
>>> )
>>> # Create an Asset object for a FOREX contract.
>>> from lumibot.entities import Asset
>>> base_asset = Asset(symbol="USD", asset_type='forex')
>>> quote_asset = Asset(symbol="EUR", asset_type='forex')
>>> order = self.create_order(asset, 100, 'BUY', quote=quote_asset)
>>> self.submit_order(order)
>>> # Create an Asset object for crypto.
>>> from lumibot.entities import Asset
>>> base = Asset(symbol="BTC", asset_type='crypto')
>>> quote = Asset(symbol="USDT", asset_type='crypto')
>>> order = self.create_order(asset, 100, 'BUY', quote=quote)
>>> self.submit_order(order)
class AssetType#

Bases: object

CRYPTO = 'crypto'#
FOREX = 'forex'#
FUTURE = 'future'#
INDEX = 'index'#
OPTION = 'option'#
STOCK = 'stock'#
class OptionRight#

Bases: object

CALL = 'CALL'#
PUT = 'PUT'#
asset_type: str = 'stock'#
asset_type_must_be_one_of(v)#
expiration: date = None#
is_valid()#
multiplier: int = 1#
precision: str = None#
right: str = None#
right_must_be_one_of(v)#
strike: float = 0.0#
symbol: str#
classmethod symbol2asset(symbol: str)#

Convert a symbol string to an Asset object. This is particularly useful for converting option symbols.

Parameters:

symbol (str) – The symbol string to convert.

Returns:

The Asset object.

Return type:

Asset

class entities.asset.AssetsMapping(mapping)#

Bases: UserDict