Skip to main content
POST
/
api
/
accounts
/
{id}
/
ea
/
start
Start EA on account
curl --request POST \
  --url https://api.easierprop.com/api/accounts/{id}/ea/start \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "ea_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "symbol": "EURUSD",
  "timeframe": "M1",
  "input_overrides": {
    "LotSize": 0.02,
    "StopLoss": 30
  }
}
'
{
  "ok": true,
  "data": {
    "instance_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "ea_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "ea_name": "MA Crossover",
    "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "symbol": "EURUSD",
    "timeframe": "M1",
    "status": "running"
  }
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Path Parameters

id
string<uuid>
required

Account ID

Body

application/json
ea_id
string<uuid>
required

ID of the uploaded EA to run

symbol
string
default:EURUSD

Trading symbol

timeframe
enum<string>
default:M1

Chart timeframe

Available options:
M1,
M5,
M15,
M30,
H1,
H4,
D1,
W1,
MN1
input_overrides
object

Override EA input parameters

Example:
{ "LotSize": 0.02, "StopLoss": 30 }

Response

200 - application/json

EA started

ok
boolean
Example:

true

data
object