Create a Trader Bot
Configure your trading bot and generate validated configuration files
⚠️ Security
Never paste your private key into a file. Export it in your terminal (export PRIVATE_KEY=0x...) before launching the bot.
ℹ️ Note on Trader Schema
This form generates a minimal schema for trader bot. Adapt it according to the official pdr-backend documentation if necessary.
Bot Configuration
Essential parameters
Select from popular markets
Paid in ROSE tokens
Format: minute hour day month day-of-week
Network Configuration
Network:
Sapphire Testnet
RPC URL:
https://testnet.sapphire.oasis.dev
Chain ID:
23295
Currency:
TEST
Explorer:
View Explorer ✓ Valid Configuration
Your YAML configuration is valid and ready to use.
trader-ppss.yaml Preview
pp:
kind: trader
market:
pair: BTC/USDT
ss:
name: my-trader
strategy:
type: momentum
stake_usd: 10
max_gas_usd: 1.2
schedule: "*/15 * * * *"
out_dir: ./trader_out
Downloads
CLI Command
pdr trader trader-ppss.yaml testnetDocker Command
docker run --rm -it \
-e PRIVATE_KEY=${PRIVATE_KEY} \
-v $(pwd):/work \
ghcr.io/oceanprotocol/pdr-backend:latest \
pdr trader /work/trader-ppss.yaml testnet