dojo.observations
This module contains the observation objects emitted by the environments.
Contains observation logic for the Gmx agents and policies.
Initialize the observation.
Parameters
- backend: The backend to use.
Return the total PnL for a trader.
Parameters
- address: The address of the trader to get the PnL for.
Method to get market from GMX environment.
Parameters
- market_key: The key identifying the market to retrieve.
Get the positions of a given account.
Parameters
- account: The account address to get positions for.
Returns
A list of Position objects representing the account's positions.
Calculate the price of a token by symbol in USD.
Parameters
- token_symbol: The symbol of the token to calculate the price for.
Returns
The calculated price of the token as a Decimal.
Calculate the price of a token by address in USD.
Parameters
- token_address: The address of the token to calculate the price for.
- price_type: The type of price to calculate. Default is PriceType.MEAN.
Returns
The calculated price of the token as a Decimal.
Calculate the price of the index token.
This method retrieves the market information and oracle prices for the index token, then calculates the average price using the minimum and maximum prices provided by the oracle. The price is scaled according to the token's decimals and the oracle precision.
Parameters
- market_key: The key identifying the market to retrieve the index token
price for. In the form of index_token:long_token:short_token, Example:
WETH:WETH:USDC
.
Returns
The calculated price of the index token as a Decimal.
Calculate the minimum price of the index token.
Parameters
- market_key: The key identifying the market to retrieve the index token
price for. In the form of index_token:long_token:short_token, Example:
WETH:WETH:USDC
.
Returns
The calculated price of the index token as a Decimal.
Calculate the maximum price of the index token.
Parameters
- market_key: The key identifying the market to retrieve the index token
price for. In the form of index_token:long_token:short_token, Example:
WETH:WETH:USDC
.
Returns
The calculated price of the index token as a Decimal.
Calculate the price of the long token.
This method retrieves the market information and oracle prices for the long token, then calculates the average price using the minimum and maximum prices provided by the oracle. The price is scaled according to the token's decimals and the oracle precision.
Parameters
- market_key: The key identifying the market to retrieve the index token
price for. In the form of index_token:long_token:short_token, Example:
WETH:WETH:USDC
.
Returns
The calculated price of the long token as a Decimal.
Calculate the price of the short token.
This method retrieves the market information and oracle prices for the short token, then calculates the average price using the minimum and maximum prices provided by the oracle. The price is scaled according to the token's decimals and the oracle precision.
Parameters
- market_key: The key identifying the market to retrieve the index token
price for. In the form of index_token:long_token:short_token, Example:
WETH:WETH:USDC
.
Returns
The calculated price of the short token as a Decimal.
Retrieve a position based on the given position key.
This method interacts with the backend to call the getPosition
function
from the Reader
contract, using the provided position key. The data
retrieved is then used to create and return a Position
object.
Parameters
- position_key: The key identifying the position to retrieve.
Returns
A
Position
object representing the retrieved position.
Retrieve the market token price and market pool value info for traders.
Parameters
- market_key: The key identifying the market to retrieve the market token.
- maximize: A boolean indicating whether to maximize the price.
Returns
A tuple containing the calculated GM token value as a Decimal and a
MarketPoolValueInfo
object with detailed market pool value information.
Retrieve the market token price and market pool value info for deposits.
Parameters
- market_key: The key identifying the market to retrieve the market token.
- maximize: A boolean indicating whether to maximize the price.
Returns
A tuple containing the calculated GM token value as a Decimal and a
MarketPoolValueInfo
object with detailed market pool value information.
Retrieve the market token price and market pool value info for withdrawals.
Parameters
- market_key: The key identifying the market to retrieve the market token.
- maximize: A boolean indicating whether to maximize the price.
Returns
A tuple containing the calculated GM token value as a Decimal and a
MarketPoolValueInfo
object with detailed market pool value information.
Retrieve the position PnL in USD.
Parameters
- position: The position object containing details of the position.
Returns
A
PositionPnl
object containing the PnL details in USD.
Retrieve the net PnL.
Parameters
- market_key: The key identifying the market to retrieve the net PnL for.
- maximize: A boolean indicating whether to maximize the PnL.
Returns
The net PnL as a Decimal.
Retrieve the PnL for a given position type.
Parameters
- market_key: The key identifying the market to retrieve the PnL for.
- is_long: A boolean indicating whether the position is long.
- maximize: A boolean indicating whether to maximize the PnL.
Returns
The PnL as a Decimal.
Retrieve the open interest with PnL.
Parameters
- market_key: The key identifying the market to retrieve the open interest for.
- is_long: A boolean indicating whether the position is long.
- maximize: A boolean indicating whether to maximize the PnL.
Returns
The open interest with PnL as a Decimal.
Retrieve the market information.
Parameters
- market_key: The key identifying the market to retrieve the information for.
Returns
A
MarketInfo
object containing detailed market information.
Get minimum number of GM tokens when depositing.
Parameters
- market_key: The key identifying the market to retrieve the deposit amount for.
- long_token_amount: The amount of long tokens to deposit.
- short_token_amount: The amount of short tokens to deposit.
- include_virtual_inventory_impact: A boolean indicating whether to include virtual inventory impact.
Contains observation logic for the UniswapV3 agents and policies.
Initialize the observation.
Parameters
- pools: list of pools to use in the environment.
- backend: The backend to use.
Get the addresses of the tokens in a pool.
Parameters
- pool: The pool name.
Get the symbols of the tokens in a pool.
Parameters
- pool: The pool name.
Get the tick spacing of a pool.
Parameters
- pool: The pool name.
Get the active tick range in a pool.
Parameters
- pool: The pool name.
Get the contents of the pool's slot0.
Parameters
- pool: The pool name.
Get the pool liquidity of the active range.
Parameters
- pool: The pool name. /core/interfaces/pool/IUniswapV3PoolState#liquidity
Returns a tuple of various tick info.
Parameters
- pool: The pool name.
- tick: The tick index.
The return format is: int128 liquidityNet uint256 feeGrowthOutside0X128 uint256 feeGrowthOutside1X128 int56 tickCumulativeOutside uint160 secondsPerLiquidityOutsideX128 uint32 secondsOutside bool initialized
Ref https://docs.uniswap.org/contracts/v3/reference/core/interfaces/pool/IUniswapV3PoolState#ticks
noqa: E501
Get the pool position of an owner in the specified tick range.
Parameters
- pool: The pool name.
- owner: The owner address.
- tick_lower: The lower tick of the position.
- tick_upper: The upper tick of the position.
Returns
A dictionary containing the position data, with keys: -
token0
: The symbol of the token0 of the pool. -token1
: The symbol of the token1 of the pool. -pool
: The name of the pool. -owner
: The address of the owner. -tick_range
: The tick range of the LP position. -liquidity
: The liquidity of the position. -uncollected_fees
: The uncollected fees of the position. -uncollected_fees_adjusted
: The uncollected fees of the position adjusted by the token decimals.
Get LP position data of an LP NFT.
Parameters
- token_id: The token ID of the LP NFT.
Returns
A dictionary containing the LP position data, with keys: -
token0
: The symbol of the token0 of the pool. -token1
: The symbol of the token1 of the pool. -fee
: The fee of the pool. -pool
: The name of the pool. -tick_range
: The tick range of the LP position. -liquidity
: The liquidity of the LP position. -real_quantities
: The real token quantities of the LP position. -uncollected_fees
: The uncollected fees of the LP position.
Get the uncollected LP fees owed to an LP portfolio.
Parameters
- token_ids: The token IDs of the LP NFTs in the portfolio.
Get the total real token quantities invested in an LP portfolio.
Parameters
- token_ids: The token IDs of the LP NFTs in the portfolio.
Get the token quantities and uncollected fees invested in an LP portfolio.
Parameters
- token_ids: The token IDs of the LP NFTs in the portfolio.
Get all the tokens used in the observed pools by the market agent.
Get the pool liquidities related information across ticks.
Parameters
- pool: The name of the pool.
- from_tick: The bottom tick of the range (included).
- to_tick: The top tick of the range (included).
Returns
A dict containing: -
current_tick_idx
: The index of the currently active tick in the returned arrays (int). -real_quantities
: The tick indexed real token quantities of the pool (num_ticks, 2). -liquidities
: The tick indexed liquidities of the pool (num_ticks,). -lower_ticks
: The tick indexed lower ticks of the pool (num_ticks,).
Get the pool's trade fee.
Parameters
- pool: The name of the pool.
Returns
The pool's trade fee.
Contains observation logic for the AAVEv3 agents and policies.
Initialize the observation.
Parameters
- backend: The backend to use.
Return all tokens on the Pool specifically for market agent.
ERC20 token balance.
Includes loands borrowed via AAVE.
Parameters
- token_name: The token name.
- address: The address of the account.
Get the price of an asset on AAVE in the Pools base currency.
Parameters
- asset_name: ERC20 token symbol.
Get the price of an asset on AAVE in the Pools base currency.
Parameters
- asset_names: ERC20 token symbols.
Get account data in the pools base currency.
Parameters
- agent_address: The address of the account.