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"
}
}Start an Expert Advisor on this account. If another EA is already running, it will be stopped first. The EA runs server-side and trades automatically based on its logic.
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"
}
}Client API key (prefixed with sk_)
Account ID