This commit is contained in:
dceoy
2026-06-25 01:08:02 +00:00
parent e171fe2864
commit 6e5c775f68
8 changed files with 1911 additions and 2191 deletions
+597 -803
View File
File diff suppressed because it is too large Load Diff
+1 -16
View File
@@ -425,10 +425,6 @@ strategy entries, exits, Kelly sizing, or signal logic.</p>
<td><code>OrderSide</code>, <code>OrderFillingMode</code>, <code>OrderTimeMode</code>, <code>PositionSide</code>, <code>ExecutionStatus</code></td>
<td>Typed enums for order helpers</td>
</tr>
<tr>
<td><code>ProjectionMode</code></td>
<td>Literal type for <code>calculate_symbol_group_margin_ratio</code> projection</td>
</tr>
</tbody>
</table>
<p><code>MT5Client.order_send()</code> and CLI <code>order-send --yes</code> are live execution paths.</p>
@@ -550,12 +546,6 @@ the MT5 SDK helper.</p>
</tr>
</tbody>
</table>
<p><code>calculate_symbol_group_margin_ratio</code> supports an optional <code>projection_mode</code>
parameter (<code>"add"</code> by default). Pass <code>projection_mode="replace_symbol"</code> to
subtract current exposure for <code>new_symbol</code> before adding the candidate margin —
useful for reversal-style projections. mt5cli only calculates broker-facing
exposure; downstream applications own thresholds, risk guard actions, and
strategy policy.</p>
<h2 id="cli-commands">CLI commands<a class="headerlink" href="#cli-commands" title="Permanent link">&para;</a></h2>
<p>The Typer application in <code>mt5cli.cli</code> exposes file-export commands documented in
<a href="../cli/">CLI Module</a> and the project README. CLI commands:</p>
@@ -566,12 +556,7 @@ strategy policy.</p>
<li>Delegate to the same Python APIs described here; they are not duplicated
business logic.</li>
</ul>
<p><code>order-send</code> is the expert raw-request path; it requires <code>--yes</code> and a fully
constructed request payload. <code>close-positions</code> is the safer high-level helper
that closes open positions by <code>--symbol</code> or <code>--ticket</code> using
<code>close_open_positions()</code>. Both <code>order-send --yes</code> and <code>close-positions --yes</code>
are live execution paths. <code>close-positions --dry-run</code> previews close orders
without placing them and does not require <code>--yes</code>.</p>
<p><code>order-send</code> requires <code>--yes</code> before placing live trades.</p>
<h2 id="internal-helpers-not-stable">Internal helpers (not stable)<a class="headerlink" href="#internal-helpers-not-stable" title="Permanent link">&para;</a></h2>
<p>Do not import these for downstream contracts; they may change without a semver
notice:</p>
+1298 -1357
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -653,5 +653,5 @@
<!--
MkDocs version : 1.6.1
Build Date UTC : 2026-06-24 17:09:45.053524+00:00
Build Date UTC : 2026-06-25 01:07:59.915198+00:00
-->
BIN
View File
Binary file not shown.
File diff suppressed because one or more lines are too long
+13 -13
View File
@@ -2,54 +2,54 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://github.com/dceoy/mt5cli/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/cli/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/client/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/converters/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/exceptions/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/history/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/public-contract/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/schemas/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/sdk/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/storage/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/trading/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
<url>
<loc>https://github.com/dceoy/mt5cli/api/utils/</loc>
<lastmod>2026-06-24</lastmod>
<lastmod>2026-06-25</lastmod>
</url>
</urlset>
BIN
View File
Binary file not shown.