Skip to content

Project

QuantConnect.Api.Project

Project()

Bases: RestResponse

Response from reading a project by id.

JSON Constructor

project_id

project_id: int

Project id

name

name: str

Name of the project

created

created: datetime

Date the project was created

modified

modified: datetime

Modified date for the project

language

language: Language

Programming language of the project

owner_id

owner_id: int

The projects owner id

organization_id

organization_id: str

The organization ID

collaborators

collaborators: List[Collaborator]

List of collaborators

lean_version_id

lean_version_id: int

The version of LEAN this project is running on

lean_pinned_to_master

lean_pinned_to_master: bool

Indicate if the project is pinned to the master branch of LEAN

owner

owner: bool

Indicate if you are the owner of the project

description

description: str

The project description

channel_id

channel_id: str

Channel id

parameters

parameters: List[Parameter]

Optimization parameters

libraries

libraries: List[Library]

The library projects

grid

grid: Grid

Configuration of the backtest view grid

live_grid

live_grid: Grid

Configuration of the live view grid

paper_equity

paper_equity: Optional[float]

The equity value of the last paper trading instance

last_live_deployment

last_live_deployment: Optional[datetime]

The last live deployment active time

live_form

live_form: Object

The last live wizard content used

encrypted

encrypted: Optional[bool]

Indicates if the project is encrypted

code_running

code_running: bool

Indicates if the project is running or not

lean_environment

lean_environment: int

LEAN environment of the project running on

encryption_key

encryption_key: EncryptionKey

Text file with at least 32 characters to be used to encrypt the project

success

success: bool

Indicate if the API request was successful.

errors

errors: List[str]

List of errors with the API call.

to_string

to_string() -> str

Returns the string representation of this object