Skip to content

Commit

Permalink
Generate QuantConnect API Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexCatarino committed Apr 26, 2024
1 parent 6014268 commit 8d23d64
Show file tree
Hide file tree
Showing 14 changed files with 802 additions and 1,364 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h4>200 Success</h4>
</tr>
</thead>
<tr>
<td width="20%">id</td> <td> <code>int</code> <br/> ID of the project file.</td>
<td width="20%">id</td> <td> <code>int</code> <br/> ID of the project file. This can also be null.</td>
</tr>
<tr>
<td width="20%">projectId</td> <td> <code>int</code> <br/> ID of the project.</td>
Expand All @@ -68,7 +68,7 @@ <h4>200 Success</h4>
<td width="20%">open</td> <td> <code>bool</code> <br/> Indicates if the project file is open or not.</td>
</tr>
<tr>
<td width="20%">isLibrary</td> <td> <code>bool</code> <br/> Indicates if the project file is a library or not.</td>
<td width="20%">isLibrary</td> <td> <code>bool</code> <br/> Indicates if the project file is a library or not. It's always false in live/read and backtest/read.</td>
</tr>
<tr>
<td width="20%">Example</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h4>200 Success</h4>
<td width="20%">signature</td> <td> <code>string</code> <br/> Signature key of compilation.</td>
</tr>
<tr>
<td width="20%">signatureOrder</td> <td> <code>string</code> <br/> Signature order of files to be compiled.</td>
<td width="20%">signatureOrder</td> <td> <code>string Array</code> <br/> Signature order of files to be compiled.</td>
</tr>
<tr>
<td width="20%">logs</td> <td> <code>string Array</code> <br/> Logs of the compilation request.</td>
Expand All @@ -43,7 +43,9 @@ <h4>200 Success</h4>
"state": "InQueue",
"projectId": 0,
"signature": "string",
"signatureOrder": "string",
"signatureOrder": [
"string"
],
"logs": [
"string"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h4>200 Success</h4>
<td width="20%">signature</td> <td> <code>string</code> <br/> Signature key of compilation.</td>
</tr>
<tr>
<td width="20%">signatureOrder</td> <td> <code>string</code> <br/> Signature order of files to be compiled.</td>
<td width="20%">signatureOrder</td> <td> <code>string Array</code> <br/> Signature order of files to be compiled.</td>
</tr>
<tr>
<td width="20%">logs</td> <td> <code>string Array</code> <br/> Logs of the compilation request.</td>
Expand All @@ -43,7 +43,9 @@ <h4>200 Success</h4>
"state": "InQueue",
"projectId": 0,
"signature": "string",
"signatureOrder": "string",
"signatureOrder": [
"string"
],
"logs": [
"string"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h4>200 Success</h4>
</table><table class="table qc-table">
<thead>
<tr>
<th colspan="2"><code class="csharp">Portfolio</code><code class="python">portfolio</code> Model</th>
<th colspan="2"><code>Portfolio</code> Model</th>
</tr>
</thead>
<tr>
Expand Down
Loading

0 comments on commit 8d23d64

Please sign in to comment.