compile_project
Compile a project in QuantConnect to generate a compilation result, including ID, state, and logs, by specifying the project ID for processing.
Instructions
Compile a project in QuantConnect.
Args: project_id: The ID of the project to compile.
Returns: A dictionary containing the compilation result with compile ID, state, and logs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "integer"
}
},
"required": [
"project_id"
],
"type": "object"
}