Skip to content

Commit

Permalink
Update gh-pages to output generated at d1f2ec5
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Jan 2, 2024
1 parent 72cd635 commit 6b33245
Show file tree
Hide file tree
Showing 34 changed files with 8 additions and 8 deletions.
Binary file modified develop/.doctrees/api_reference/accounting.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/adapters/betfair.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/adapters/binance.doctree
Binary file not shown.
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/analysis.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/backtest.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/cache.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/common.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/config.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/core.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/data.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/execution.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/indicators.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/live.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/book.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/data.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/events.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/identifiers.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/instruments.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/objects.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/orders.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/position.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/model/tick_scheme.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/persistence.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/portfolio.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/risk.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/serialization.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/system.doctree
Binary file not shown.
Binary file modified develop/.doctrees/api_reference/trading.doctree
Binary file not shown.
Binary file modified develop/.doctrees/environment.pickle
Binary file not shown.
2 changes: 1 addition & 1 deletion develop/api_reference/adapters/interactive_brokers.html
Original file line number Diff line number Diff line change
Expand Up @@ -11887,7 +11887,7 @@ <h2 id="module-nautilus_trader.adapters.interactive_brokers.config">
at
</span>
<span class="pre">
0x7fcd1d928950&gt;
0x7ff1ef0e8290&gt;
</span>
<span class="pre">
=
Expand Down
6 changes: 3 additions & 3 deletions develop/core/src/nautilus_common/msgbus.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
collections::HashMap,
fmt,
hash::{Hash, Hasher},
sync::mpsc::{channel, Receiver, SendError, Sender},
sync::mpsc::{sync_channel, Receiver, SendError, SyncSender},
thread,
};

Expand Down Expand Up @@ -811,7 +811,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
/// For example, `c??p` would match both of the above examples and `coop`.
</span><span class="attr">#[derive(Clone)]
</span><span class="kw">pub struct </span>MessageBus {
tx: <span class="prelude-ty">Option</span>&lt;Sender&lt;BusMessage&gt;&gt;,
tx: <span class="prelude-ty">Option</span>&lt;SyncSender&lt;BusMessage&gt;&gt;,
<span class="doccomment">/// mapping from topic to the corresponding handler
/// a topic can be a string with wildcards
/// * '?' - any character
Expand Down Expand Up @@ -856,7 +856,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
<span class="kw">let </span>config = config.unwrap_or_default();
<span class="kw">let </span>has_backing = config.get(<span class="string">"database"</span>).map_or(<span class="bool-val">false</span>, |v| v != <span class="kw-2">&amp;</span>Value::Null);
<span class="kw">let </span>tx = <span class="kw">if </span>has_backing {
<span class="kw">let </span>(tx, rx) = channel::&lt;BusMessage&gt;();
<span class="kw">let </span>(tx, rx) = sync_channel::&lt;BusMessage&gt;(<span class="number">0</span>);
thread::spawn(<span class="kw">move </span>|| {
<span class="self">Self</span>::handle_messages(rx, trader_id, instance_id, config);
});
Expand Down
6 changes: 3 additions & 3 deletions develop/core/src/nautilus_infrastructure/redis.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>

</span><span class="kw">use </span>std::{
collections::{HashMap, VecDeque},
sync::mpsc::{channel, Receiver, Sender, TryRecvError},
sync::mpsc::{sync_channel, Receiver, SyncSender, TryRecvError},
thread,
time::{Duration, Instant},
};
Expand Down Expand Up @@ -677,7 +677,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
<span class="kw">pub </span>trader_id: TraderId,
trader_key: String,
conn: Connection,
tx: Sender&lt;DatabaseCommand&gt;,
tx: SyncSender&lt;DatabaseCommand&gt;,
}

<span class="kw">impl </span>CacheDatabase <span class="kw">for </span>RedisCacheDatabase {
Expand All @@ -692,7 +692,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
<span class="kw">let </span>client = redis::Client::open(redis_url)<span class="question-mark">?</span>;
<span class="kw">let </span>conn = client.get_connection().unwrap();

<span class="kw">let </span>(tx, rx) = channel::&lt;DatabaseCommand&gt;();
<span class="kw">let </span>(tx, rx) = sync_channel::&lt;DatabaseCommand&gt;(<span class="number">0</span>);
<span class="kw">let </span>trader_key = get_trader_key(trader_id, instance_id, <span class="kw-2">&amp;</span>config);
<span class="kw">let </span>trader_key_clone = trader_key.clone();

Expand Down
2 changes: 1 addition & 1 deletion develop/searchindex.js

Large diffs are not rendered by default.

0 comments on commit 6b33245

Please sign in to comment.