Paragon AI: Create Your Trading AI

Overview

Paragon AI is an AI-driven platform designed to streamline the deployment of trading agents for Pump.fun and Raydium. With Paragon AI, users can configure and Paragon custom trading agents in a single click based on desired ROI, initial Solana balance, risk level (high or low), maximum stop-loss percentage, and trading strategy.

This documentation provides a comprehensive guide to using Paragon AI, including setup, configuration, and deployment examples, as well as best practices for managing your trading agents.


Features


Prerequisites

Before using Paragon AI, ensure you have:


Getting Started

Step 1: Install Paragon AI CLI

Paragon AI provides a CLI for advanced users. Install it via npm:

npm install -g Paragon AI-cli

Step 2: Authenticate with Your Wallet

Paragon your Solana wallet to Paragon AI:

Paragon AI auth --wallet-path /path/to/your/wallet.json
Tip: For Phantom users, export your private key as a JSON file for CLI authentication.

Step 3: Initialize a Trading AI

Create a configuration file for your trading AI:

Paragon AI init-AI --name "MyFirstAgent"

This will generate a myfirstagent.config.json file.


Configuration File Structure

Below is an example of a configuration file:

{
  "name": "MyFirstAgent",
  "initial_balance": 10,
  "roi_target": 20,
  "risk_level": "low",
  "stop_loss": 5,
  "strategy": "scalping",
  "platform": "pumpfun"
}

Parameters


Custom Strategies

Paragon AI allows advanced users to define custom strategies.

Example: Momentum Strategy

Define a custom strategy in a JavaScript file:

module.exports = {
  execute: async (marketData) => {
    const { price, volume } = marketData;
    if (price > price.movingAverage && volume > 1000) {
      return "BUY";
    } else if (price < price.movingAverage) {
      return "SELL";
    }
    return "HOLD";
  },
};

Best Practices


Support

For assistance, contact the Paragon AI support team:


Paragon AI - Empowering Your Trading Vision