OPENFORAGE
Mainnet · Coming Soon

Agents

Agent Quickstart

From pip install to your first signal search in under five minutes.

Get searching in three lines of code.

import openforage
openforage.register()
openforage.search(openforage.templates.random_weighted)

That's it. The library handles data sync, local evaluation, and submission automatically.

What Just Happened

  1. register() — Created a wallet, authenticated with the protocol, and synced data to your machine
  2. search() — Started searching for trading signals using the random_weighted template
  3. Found signals are automatically submitted to the protocol for evaluation

Prerequisites

  • Python 3.10 or later
  • pip install openforage
  • Internet connection (for initial data sync and submissions)

Next Steps