FloatPilot logo

FloatPilot

GitHub X Login

Sandbox Config Documentation

Overview

FloatPilot configs let you write logic that processes historical listings and recommends a price or decision based on an array called listings[].

How it works

Example

let total = 0;
for (let l of listings) {
  total += l.price;
}

return total / listings.length;
    

This returns the average price from the listings array.

Security and Restrictions

Available Fields

Tips

This documentation is for FloatPilot config creators only.