Looking for the easiest way to track wallet profit and loss (PnL)? You’ve come to the right place! In this guide, we’ll introduce Moralis’ crypto PnL feature, providing comprehensive insights into wallet and token profitability. With this feature, you can seamlessly get the overall profitability of a given address, gain insight into the PnL status of individual tokens, and fetch the top profitable wallets for a given ERC-20 token!
Are you eager to dive into the code? Here’s our Wallet PnL Summary endpoint in action:
“`
import fetch from ‘node-fetch’;
const options = {
method: ‘GET’,
headers: {
accept: ‘application/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};
fetch(‘https://deep-index.moralis.io/api/v2.2/wallets/0xd8da6bf26964af9d7eed9e03e53415d37aa96045/profitability/summary?chain=eth’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
“`
Calling this endpoint returns the specified wallet’s total trading volume, total PnL, PnL percentage, and other key metrics. Here’s an example of what it looks like:
“`
{
total_count_of_trades: 12,
total_trade_volume: ‘3793782.5812942344’,
total_realized_profit_usd: ‘-20653.121064896484’,
total_realized_profit_percentage: -1.350177388165031,
total_buys: 8,
total_sells: 20,
total_sold_volume_usd: ‘1509006.703335308’,
total_bought_volume_usd: ‘2284775.8779589264’
}
“`
That’s it; tracking wallet profit and loss doesn’t have to be more challenging than this when using Moralis. For a more in-depth tutorial on how this works and further information on our other endpoints, join us in this article or check out the Wallet API documentation page!
Ready to use our crypto PnL feature? Sign up for free with Moralis and gain immediate access to our industry-leading development tools!
Overview
Crypto PnL is a crucial financial metric used to determine a portfolio’s net profit or loss. Traders, investors, and analysts rely on this metric to assess asset performance over specific periods. As such, it is fundamental for creating tools such as cryptocurrency wallets and trading platforms since it provides users with a clear overview of their portfolios’ performance.
Traditionally, obtaining this information requires extensive manual data aggregation, including tracking trades and cryptocurrency prices. However, this process can now be streamlined using a Web3 data provider like Moralis.
With Moralis’ crypto PnL feature, you can easily determine the overall profitability of a given address, analyze the PnL status of ERC-20s, and identify the top profitable wallets for specific tokens. To learn more about how this feature works and how it can benefit you, follow our comprehensive guide. Let’s dive in!
What is PnL in Crypto?
Crypto PnL, short for “profit and loss,” refers to the financial outcome of your trading activities. It is calculated based on the difference between the buying and selling prices of your cryptocurrency tokens. As such, crypto PnL provides an overview of how your assets are performing over a given period.
Crypto PnL is an essential metric for traders and analysts alike, offering a comprehensive overview of portfolio performance. Traders rely on it to assess the effectiveness of their strategies, while analysts …