Crates.io | barter |
lib.rs | barter |
version | |
source | src |
created_at | 2021-03-27 15:13:42.9764+00 |
updated_at | 2025-04-03 10:56:33.49058+00 |
description | Framework for building high-performance live-trading, paper-trading and back-testing systems |
homepage | |
repository | https://github.com/barter-rs/barter-rs |
max_upload_size | |
id | 374235 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Barter core is a Rust framework for building high-performance live-trading, paper-trading and back-testing systems.
See: Barter-Data
, Barter-Instrument
, Barter-Execution
& Barter-Integration
for
comprehensive documentation of other Barter libraries.
Barter core is a Rust framework for building professional grade live-trading, paper-trading and back-testing systems. The central Engine facilitates executing on many exchanges simultaneously, and offers the flexibility to run most types of trading strategies. It allows turning algorithmic order generation on/off and can action Commands issued from external processes (eg/ CloseAllPositions, OpenOrders, CancelOrders, etc.)
At a high-level, it provides a few major components:
SystemBuilder
for constructing and initialising a full trading System
.Engine
with plug and play Strategy
and RiskManager
components.EngineState
management with O(1) constant lookups using indexed data structures.Strategy
interfaces for customising Engine behavior (AlgoStrategy, ClosePositionsStrategy, OnDisconnectStrategy, etc.).RiskManager
interface for defining custom risk logic which checking generated algorithmic orders.const FILE_PATH_SYSTEM_CONFIG: &str = "barter/examples/config/system_config.json";
const RISK_FREE_RETURN: Decimal = dec!(0.05);
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Initialise Tracing
init_logging();
// Load SystemConfig
let SystemConfig {
instruments,
executions,
} = load_config()?;
// Construct IndexedInstruments
let instruments = IndexedInstruments::new(instruments);
// Initialise MarketData Stream
let market_stream = init_indexed_multi_exchange_market_stream(
&instruments,
&[SubKind::PublicTrades, SubKind::OrderBooksL1],
)
.await?;
// Construct System Args
let args = SystemArgs::new(
&instruments,
executions,
LiveClock,
DefaultStrategy::default(),
DefaultRiskManager::default(),
market_stream,
);
// Build & run full system:
let mut system = SystemBuilder::new(args)
// Engine feed in Sync mode (Iterator input)
.engine_feed_mode(EngineFeedMode::Iterator)
// Engine starts with algorithmic trading disabled
.trading_state(TradingState::Disabled)
// Build System, but don't start spawning tasks yet
.build::<EngineEvent, DefaultInstrumentMarketData, DefaultStrategyState, DefaultRiskManagerState>()?
// Init System, spawning component tasks on the current runtime
.init_with_runtime(tokio::runtime::Handle::current())
.await?;
// Enable trading
system.trading_state(TradingState::Enabled);
// Let the example run for 5 seconds...
tokio::time::sleep(Duration::from_secs(5)).await;
// Before shutting down, CancelOrders and then ClosePositions
system.cancel_orders(InstrumentFilter::None);
system.close_positions(InstrumentFilter::None);
// Shutdown
let (engine, _shutdown_audit) = system.shutdown().await?;
// Generate TradingSummary<Daily>
let trading_summary = engine
.trading_summary_generator(RISK_FREE_RETURN)
.generate(Daily);
// Print TradingSummary<Daily> to terminal (could save in a file, send somewhere, etc.)
trading_summary.print_summary();
Ok(())
}
fn load_config() -> Result<SystemConfig, Box<dyn std::error::Error>> {
let file = File::open(FILE_PATH_SYSTEM_CONFIG)?;
let reader = BufReader::new(file);
let config = serde_json::from_reader(reader)?;
Ok(config)
}
Firstly, see if the answer to your question can be found in the API Documentation. If the answer is not there, I'd be happy to help via Chat and try answer your question via Discord.
Help us advance Barter's capabilities by becoming a sponsor (or supporting me with a tip!).
Your contribution will allow me to dedicate more time to Barter, accelerating feature development and improvements.
Please email justastream.code@gmail.com for all inquiries
Please see here for more information.
Thanks in advance for helping to develop the Barter ecosystem! Please do get hesitate to get touch via the DiscordChat to discuss development, new features, and the future roadmap.
This project is licensed under the MIT license.
Any contribution you intentionally submit for inclusion in Barter workspace crates shall be:
By submitting a contribution, you certify that you have the right to do so under these terms.
PLEASE READ THIS DISCLAIMER CAREFULLY BEFORE USING THE SOFTWARE. BY ACCESSING OR USING THE SOFTWARE, YOU ACKNOWLEDGE AND AGREE TO BE BOUND BY THE TERMS HEREIN.
EDUCATIONAL PURPOSE This software and related documentation ("Software") are provided solely for educational and research purposes. The Software is not intended, designed, tested, verified or certified for commercial deployment, live trading, or production use of any kind.
NO FINANCIAL ADVICE Nothing contained in the Software constitutes financial, investment, legal, or tax advice. No aspect of the Software should be relied upon for trading decisions or financial planning. Users are strongly advised to consult qualified professionals for investment guidance specific to their circumstances.
ASSUMPTION OF RISK Trading in financial markets, including but not limited to cryptocurrencies, securities, derivatives, and other financial instruments, carries substantial risk of loss. Users acknowledge that: a) They may lose their entire investment; b) Past performance does not indicate future results; c) Hypothetical or simulated performance results have inherent limitations and biases.
DISCLAIMER OF WARRANTIES THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE AUTHORS AND COPYRIGHT HOLDERS EXPRESSLY DISCLAIM ALL WARRANTIES, INCLUDING BUT NOT LIMITED TO: a) MERCHANTABILITY b) FITNESS FOR A PARTICULAR PURPOSE c) NON-INFRINGEMENT d) ACCURACY OR RELIABILITY OF RESULTS e) SYSTEM INTEGRATION f) QUIET ENJOYMENT
LIMITATION OF LIABILITY IN NO EVENT SHALL THE AUTHORS, COPYRIGHT HOLDERS, CONTRIBUTORS, OR ANY AFFILIATED PARTIES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
REGULATORY COMPLIANCE The Software is not registered with, endorsed by, or approved by any financial regulatory authority. Users are solely responsible for: a) Determining whether their use complies with applicable laws and regulations b) Obtaining any required licenses, permits, or registrations c) Meeting any regulatory obligations in their jurisdiction
INDEMNIFICATION Users agree to indemnify, defend, and hold harmless the authors, copyright holders, and any affiliated parties from and against any claims, liabilities, damages, losses, and expenses arising from their use of the Software.
ACKNOWLEDGMENT BY USING THE SOFTWARE, USERS ACKNOWLEDGE THAT THEY HAVE READ THIS DISCLAIMER, UNDERSTOOD IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS.
THE ABOVE LIMITATIONS MAY NOT APPLY IN JURISDICTIONS THAT DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR LIMITATIONS OF LIABILITY.