update_file_content
Modifies file content within a QuantConnect project by specifying the project ID, file name, and updated content. Streamlines file management for strategy design and implementation.
Instructions
Update the content of a file in a QuantConnect project.
Args: project_id: ID of the project containing the file name: Name of the file to update content: New content for the file
Returns: Dictionary containing update result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
}
},
"required": [
"project_id",
"name",
"content"
],
"type": "object"
}