Back to blog

Commodities Analysis Multi-Agent Framework

Notebook

What was one of the best performing assets of 2024? It wasn't Bitcoin, the NASDAQ, or even gold.

It was cocoa - the stuff chocolates are made of.

Global weather disruptions affected production, particularly for cocoa (Ivory Coast and Ghana), coffee, and orange juice (Brazil). Global weather disruptions affected production across key regions

Cocoa futures reached record highs in 2024, with prices soaring to nearly $12,000 per metric ton by December, representing a staggering increase of over 180% since the beginning of the year.

In comparison:

  • Bitcoin: +54% (January to November 2024, pre-Trump rally)
  • S&P 500: +23%

In fact, many everyday commodities saw substantial gains this year and beat the S&P 500's returns on aggregate:

  • Cocoa: +175%
  • Eggs: +107%
  • Coffee: +80%+
  • Orange Juice: +65%

I won't go into the reasons why each of these commodities performed well, but in general, commodities are known to be a powerful inflation hedge.

But here's the kicker:

According to a January 2024 Bloomberg MacroScope report, commodities account for only 1.7% of total portfolios relative to equities and bonds - significantly lower than the recommended 4-9% allocation for typical 60/40 portfolios.

Most retail investors often avoid commodities investments due to:

  • Inherent volatility
  • Limited understanding
  • Substantial capital requirements for futures markets

Recognizing these challenges, I developed this AI Agentic system to simplify and automate commodities analysis. Furthermore, the system provides information on ETFs that can provide indirect exposure.


Multi-Agent Commodities Analysis

Open In Colab The Commodities Analysis Agent provides a way to analyze commodities markets in real time with AI analysis built in. Created using LlamaIndex and leveraging the Financial Modeling Prep (FMP) API, this system can significantly enhance the research process and enable investors monitor, track, and analyze commodities data all in one place.

Note: This is a proof concept for an AI-powered commodities tracker. The goal of this project is to explore the use of AI for research and testing real-time API throughput. This project is for educational purposes only and is not intended for real trading or investment.

System architecture diagram showing the integration between components Commodities Agent System Architecture

Install required packages

!pip install llama-index-llms-anthropic -q
!pip install llama-index -q
from llama_index.llms.anthropic import Anthropic
from llama_index.llms.openai import OpenAI
from llama_index.core.tools import FunctionTool
 
import nest_asyncio
 
nest_asyncio.apply()

Set up API keys in Google Colab or local environment

from google.colab import userdata
 
CLAUDE_API_KEY = userdata.get('ANTHROPIC_API_KEY')
OAI_API_KEY = userdata.get('OPENAI_API_KEY') ## you can choose any other model, I prefer Claude
FMP_API_KEY = userdata.get('FMP_API_KEY')
 
anthropic_llm = Anthropic(model="claude-3-5-sonnet-latest", api_key=CLAUDE_API_KEY)

Define CommoditiesTracker Class to fetch FMP API data

CommoditiesTracker Class

The main class that handles data fetching and analysis of commodities market data.

Key Methods:
__init__()
  • Initializes the tracker with FMP API credentials from Colab userdata
  • Sets up the base URL for API calls
  • Triggers initial data fetch
_fetch_data()
  • Private method that retrieves fresh commodities data from FMP API
  • Converts raw JSON data into a pandas DataFrame
  • Includes error handling for API requests
refresh_data()
  • Public method to manually update data from the API
  • Useful for getting latest market updates
  • Calls _fetch_data() internally to refresh the DataFrame

The full code is available in the Colab notebook

Create Helper Functions for Tool Use

Users can create multiple helper functions for all forms of analysis - other implementations could include sentiment analysis, dataframe creation, visualizations tools, etc

def get_commodity_info(symbol: Optional[str] = None, name: Optional[str] = None) -> Dict:
    """
    Get detailed information for a specific commodity by symbol or name.
 
    Args:
        symbol (str, optional): Trading symbol of the commodity (e.g., 'GCUSD' for Gold)
        name (str, optional): Name of the commodity (e.g., 'Gold')
    """
    try:
        tracker = CommoditiesTracker()
        return tracker.get_commodity_info(symbol, name)
    except Exception as e:
        return {"error": f"Failed to get commodity info: {str(e)}"}
 
def get_top_movers(n: int = 10, metric: str = 'changesPercentage') -> List[Dict]:
    """
    Get top performing commodities by specified metric.
 
    Args:
        n (int): Number of commodities to return (default: 5)
        metric (str): Metric to sort by - options: 'changesPercentage', 'volume', 'price'
    """
    try:
        tracker = CommoditiesTracker()
        return tracker.get_top_movers(n, metric)
    except Exception as e:
        return [{"error": f"Failed to get top movers: {str(e)}"}]
 
def get_market_summary() -> Dict:
    """
    Get overall commodities market summary statistics.
    """
    try:
        tracker = CommoditiesTracker()
        return tracker.get_market_summary()
    except Exception as e:
        return {"error": f"Failed to get market summary: {str(e)}"}
 
def get_commodity_analysis(symbol: str) -> Dict:
    """
    Get detailed technical analysis for a specific commodity.
 
    Args:
        symbol (str): Trading symbol of the commodity (e.g., 'GCUSD' for Gold)
    """
    try:
        tracker = CommoditiesTracker()
        return tracker.get_commodity_analysis(symbol)
    except Exception as e:
        return {"error": f"Failed to get commodity analysis: {str(e)}"}

Create The Agent

First, we will need to create a tool for each of the helper functions.

commodity_info_tool = FunctionTool.from_defaults(fn=get_commodity_info)
top_movers_tool = FunctionTool.from_defaults(fn=get_top_movers)
market_summary_tool = FunctionTool.from_defaults(fn=get_market_summary)
commodity_analysis_tool = FunctionTool.from_defaults(fn=get_commodity_analysis)

Next, we will create the agent with the tools.

commodities_agent = FunctionCallingAgent.from_tools(
    [
        commodity_info_tool,
        top_movers_tool,
        market_summary_tool,
        commodity_analysis_tool
    ],
    llm=anthropic_llm,
    verbose=False,
    allow_parallel_tool_calls=False,
    system_prompt="You are a commodities analyst. You are given a question and you need to answer it using the tools provided." 
)

Run the Agent - Example Query

query= "What is the price of cocoa and how's it been trending?"
response = commodities_agent.chat(query)
print(str(response))

LLM Output:

Current Price and Daily Movement:
- Current Price: $11,567.00
- Today's Change: +$430.00 (+3.86%)
- Today's Range: $11,029.00 - $11,623.00
 
Trend Analysis:
1. Short-term Trend:
- Currently trading significantly above its 50-day moving average of $9,189.44
- Strong daily performance with a 3.86% gain
- Trading near the day's high, showing strong momentum
 
2. Long-term Trend:
- Trading well above its 200-day moving average of $8,927.09
- Remarkable yearly range: $4,034.00 - $12,931.00
- Current price is closer to the yearly high, indicating strong bullish trend
- Has shown extraordinary growth from the yearly low (nearly tripled in value)
 
3. Volume Analysis:
- Current volume: 4,917 contracts
- Average volume: 6,051 contracts
- Trading at about 81% of average volume, indicating moderate market participation
 
Key Observations:
1. Cocoa is in a strong uptrend, trading above both major moving averages
2. The commodity has shown exceptional strength over the past year, with current prices nearly triple the yearly low
3. Today's positive price action (+3.86%) continues the bullish trend
4. The current price of $11,567 is relatively close to the yearly high of $12,931, suggesting continued strong market demand
 
Would you like me to provide any additional analysis or specific aspects of cocoa's price movement?

The Future of AI-Assisted Commodities Analysis

AI Agent systems are transforming how traders and investors can approach markets in real-time. With up-to-date data, advanced analytics, satellite imagery, and customizable insights, investors can make informed decisions faster than ever.

Whether it’s tracking cocoa prices during a supply crunch or analyzing coffee’s bullish trends, AI agents can provide a critical edge in navigating today’s volatile commodities markets.

However, it is important to acknowledge certain limitations. AI systems rely heavily on the quality and accuracy of input data, and sudden market disruptions or incomplete datasets can affect predictions. Additionally, interpreting AI-driven outputs may still require human expertise to avoid over-reliance on automated processes. AI systems are complementary to your analysis, they’re not meant to replace it… yet.


Disclaimer: This is not investment advice. My views and opinions expressed here are solely my own and do not necessarily reflect the position of my employer or any other affiliated organizations.