Skip to content

MathisWellmann/lfest-rs

Repository files navigation

Leveraged Futures Exchange for Simulated Trading (LFEST)

lfest-rs is a simulated perpetual futures exchange capable of leveraged positions. Its optimized for speed and can simulate more than 100 million trade and quote events per second along with plenty of order submissions. You feed in external market data using Bba or Trade to update the MarketState, which triggers order executions when appropriate. For simplicity's sake (and performance) the exchange does not use an order book, nor does it account for slippage of MarkerOrder. It is advised to use LimitOrder most of the time which supports partial executions. The exchange can be configured using Config and ContractSpecification.

☢️ This is a personal project, use a your own risk. ‼️

Features:

  • 💱 Fixed point arithmetic using const-decimal crate, for super fast and precise numeric calculations.
  • 🧠 Use of newtype pattern to enforce the correct types at function boundaries, e.g: BaseCurrency,
    QuoteCurrency,
    Fee,
    Leverage.
    This makes it impossible to mistakenly input for example a USD denoted value into a function that expects a BTC denoted value.
  • 📡 Flexible market data integration through the MarketUpdate trait.
  • 💹 Integrated performance tracking.
    Use the existing FullAccountTracker
    or implement your own using the AccountTracker trait.
  • ✔️ good test coverage and heavy use of assertions, to ensure correctness.
  • 📃 Supports both linear and inverse futures contracts, by simply setting the margin currency to either QuoteCurrency (linear) or BaseCurrency (inverse)
  • ⛔ Order filtering to make sure the price and quantity follow certain rules. See:
    PriceFilter
    QuantityFilter
  • IsolatedMarginRiskEngine
  • Double-Entry Bookkeeping is used to ensure the accounting-equation always holds.

Order Types

The supported order types are:

  • LimitOrder: passively place an order into the orderbook, with support for partial executions.
  • MarketOrder: aggressively execute against the best bid / ask. Not accounting for available volume or full order book for now.

Performance Metrics:

The following performance metrics are available when using the FullTrack AccountTracker,
but you may define any performance metric by implementing the AccountTracker trait.

  • win_ratio: wins / total_trades
  • profit_loss_ratio: avg_win_amnt / avg_loss_amnt
  • total_rpnl: Total realized profit and loss
  • sharpe: The annualized sharpe ratio
  • sortino: The annualized sortino ratio
  • cumulative fees: Sum total of fees payed to the exchange
  • max_drawdown_wallet_balance: Maximum fraction the wallet balance has decreased from its high.
  • max_drawdown_total: Drawdown including unrealized profit and loss
  • max_drawdown_duration: The duration of the longest drawdown
  • num_trades: The total number of trades executed
  • turnover: The total quantity executed
  • trade_percentage: trades / total_trade_opportunities
  • buy_ratio: buys / total_trades
  • limit_order_fill_ratio
  • limit_order_cancellation_ratio
  • historical_value_at_risk
  • cornish_fisher_value_at_risk
  • d_ratio

There probably are some more metrics that I missed. Some of these metric may behave differently from what you would expect, so make sure to take a look at the code.

How to use

To use this crate in your project, add the following to your Cargo.toml:

[dependencies]
lfest = { git = https://github.com/MathisWellmann/lfest-rs, rev = "DESIRED-REVISION", version = "0.83"} # Probably pin the revision because main is changing quickly

Then proceed to use it in your code. For an example see examples

TODOs:

  • Orderbook support (with MatchingEngine) and thus accounting for slippage of MarkerOrder
  • Funding rate (support settle_funding_period in ClearingHouse)
  • Support for updating leverage of a position while it is open.

Contributions

Would love to see you use and contribute to this project. Even just adding more tests is welcome.

Donations 💰 💸

I you would like to support the development of this crate, feel free to send over a donation:

Monero (XMR) address:

47xMvxNKsCKMt2owkDuN1Bci2KMiqGrAFCQFSLijWLs49ua67222Wu3LZryyopDVPYgYmAnYkSZSz9ZW2buaDwdyKTWGwwb

monero

License

Copyright (C) 2020 <Mathis Wellmann wellmannmathis@gmail.com>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.

GNU AGPLv3