Skip to content

Commit

Permalink
Update gh-pages to output generated at a8a78ac
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed May 4, 2024
1 parent 9e9daf5 commit ffa6e5d
Show file tree
Hide file tree
Showing 1,962 changed files with 15,729 additions and 14,728 deletions.
Binary file modified nightly/.doctrees/api_reference/accounting.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/adapters/betfair.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/adapters/binance.doctree
Binary file not shown.
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/analysis.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/backtest.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/cache.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/common.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/core.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/data.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/execution.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/indicators.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/live.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/book.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/data.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/events.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/identifiers.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/instruments.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/objects.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/orders.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/position.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/model/tick_scheme.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/persistence.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/portfolio.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/risk.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/serialization.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/system.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/api_reference/trading.doctree
Binary file not shown.
Binary file modified nightly/.doctrees/environment.pickle
Binary file not shown.
170 changes: 170 additions & 0 deletions nightly/api_reference/adapters/binance.html
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,15 @@
</code>
</a>
</li>
<li class="md-nav__item">
<a class="md-nav__link" href="#nautilus_trader.adapters.binance.common.types.BinanceBar.from_raw_arrays_to_list">
<code class="docutils literal notranslate">
<span class="pre">
BinanceBar.from_raw_arrays_to_list()
</span>
</code>
</a>
</li>
<li class="md-nav__item">
<a class="md-nav__link" href="#nautilus_trader.adapters.binance.common.types.BinanceBar.fully_qualified_name">
<code class="docutils literal notranslate">
Expand Down Expand Up @@ -11838,6 +11847,167 @@ <h2 id="module-nautilus_trader.adapters.binance.common.types">
<dd>
</dd>
</dl>
<dl class="py method">
<dt class="sig sig-object py" id="nautilus_trader.adapters.binance.common.types.BinanceBar.from_raw_arrays_to_list">
<em class="property">
<span class="pre">
static
</span>
<span class="w">
</span>
</em>
<span class="sig-name descname">
<span class="pre">
from_raw_arrays_to_list
</span>
</span>
<span class="sig-paren">
(
</span>
<em class="sig-param">
<span class="n">
<span class="pre">
BarType
</span>
<span class="pre">
bar_type
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
uint8_t
</span>
<span class="pre">
price_prec
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
uint8_t
</span>
<span class="pre">
size_prec
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
int64_t[:]
</span>
<span class="pre">
opens
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
int64_t[:]
</span>
<span class="pre">
highs
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
int64_t[:]
</span>
<span class="pre">
lows
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
int64_t[:]
</span>
<span class="pre">
closes
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
uint64_t[:]
</span>
<span class="pre">
volumes
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
uint64_t[:]
</span>
<span class="pre">
ts_events
</span>
</span>
</em>
,
<em class="sig-param">
<span class="n">
<span class="pre">
uint64_t[:]
</span>
<span class="pre">
ts_inits
</span>
</span>
</em>
<span class="sig-paren">
)
</span>
<span class="sig-return">
<span class="sig-return-icon">
</span>
<span class="sig-return-typehint">
<span class="pre">
list
</span>
<span class="p">
<span class="pre">
[
</span>
</span>
<a class="reference internal" href="../model/data.html#nautilus_trader.model.data.Bar" title="nautilus_trader.model.data.Bar">
<span class="pre">
Bar
</span>
</a>
<span class="p">
<span class="pre">
]
</span>
</span>
</span>
</span>
<a class="headerlink" href="#nautilus_trader.adapters.binance.common.types.BinanceBar.from_raw_arrays_to_list" title="Permalink to this definition">
</a>
</dt>
<dd>
</dd>
</dl>
<dl class="py method">
<dt class="sig sig-object py" id="nautilus_trader.adapters.binance.common.types.BinanceBar.fully_qualified_name">
<em class="property">
Expand Down
2 changes: 1 addition & 1 deletion nightly/api_reference/adapters/interactive_brokers.html
Original file line number Diff line number Diff line change
Expand Up @@ -12109,7 +12109,7 @@ <h2 id="module-nautilus_trader.adapters.interactive_brokers.config">
at
</span>
<span class="pre">
0x7f52938685d0&gt;
0x7f53d28d61d0&gt;
</span>
<span class="pre">
=
Expand Down
4 changes: 2 additions & 2 deletions nightly/api_reference/backtest.html
Original file line number Diff line number Diff line change
Expand Up @@ -31589,7 +31589,7 @@ <h1 id="api-reference-backtest--page-root">
default False
</em>
) – If the bar aggregator should await the arrival of a historical partial bar prior
to activaely aggregating new bars.
to actively aggregating new bars.
</p>
</li>
</ul>
Expand Down Expand Up @@ -43067,7 +43067,7 @@ <h1 id="api-reference-backtest--page-root">
default False
</em>
) – If the bar aggregator should await the arrival of a historical partial bar prior
to activaely aggregating new bars.
to actively aggregating new bars.
</p>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion nightly/api_reference/common.html
Original file line number Diff line number Diff line change
Expand Up @@ -12333,7 +12333,7 @@ <h1 id="api-reference-common--page-root">
default False
</em>
) – If the bar aggregator should await the arrival of a historical partial bar prior
to activaely aggregating new bars.
to actively aggregating new bars.
</p>
</li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions nightly/api_reference/execution.html
Original file line number Diff line number Diff line change
Expand Up @@ -18389,7 +18389,7 @@ <h2 id="module-nautilus_trader.execution.algorithm">
default False
</em>
) – If the bar aggregator should await the arrival of a historical partial bar prior
to activaely aggregating new bars.
to actively aggregating new bars.
</p>
</li>
</ul>
Expand Down Expand Up @@ -34692,7 +34692,7 @@ <h2 id="module-nautilus_trader.execution.algorithm">
default False
</em>
) – If the bar aggregator should await the arrival of a historical partial bar prior
to activaely aggregating new bars.
to actively aggregating new bars.
</p>
</li>
</ul>
Expand Down
Loading

0 comments on commit ffa6e5d

Please sign in to comment.