mango-explorer/mango/marketmaking/orderchain/confidenceintervalelement.py

93 lines
5.1 KiB
Python
Raw Normal View History

# # ⚠ Warning
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
# LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# [🥭 Mango Markets](https://mango.markets/) support is available at:
# [Docs](https://docs.mango.markets/)
# [Discord](https://discord.gg/67jySBhxrg)
# [Twitter](https://twitter.com/mangomarkets)
# [Github](https://github.com/blockworks-foundation)
# [Email](mailto:hello@blockworks.foundation)
import argparse
import mango
import typing
from decimal import Decimal
from .element import Element
from ...modelstate import ModelState
# # 🥭 ConfidenceIntervalElement class
#
# Ignores any input `Order`s (so probably best at the head of the chain). Builds orders using a fixed position
# size ratio but with a spread based on the confidence in the oracle price.
#
class ConfidenceIntervalElement(Element):
def __init__(self, order_type: mango.OrderType, position_size_ratio: Decimal, confidence_interval_levels: typing.Sequence[Decimal]):
super().__init__()
self.order_type: mango.OrderType = order_type
self.position_size_ratio: Decimal = position_size_ratio
self.confidence_interval_levels: typing.Sequence[Decimal] = confidence_interval_levels
@staticmethod
def add_command_line_parameters(parser: argparse.ArgumentParser) -> None:
parser.add_argument("--confidenceinterval-level", type=Decimal, action="append",
help="the levels of weighting to apply to the confidence interval from the oracle: e.g. 1 - use the oracle confidence interval as the spread, 2 (risk averse, default) - multiply the oracle confidence interval by 2 to get the spread, 0.5 (aggressive) halve the oracle confidence interval to get the spread (can be specified multiple times to give multiple levels)")
parser.add_argument("--confidenceinterval-position-size-ratio", type=Decimal,
help="fraction of the token inventory to be bought or sold in each order")
@staticmethod
def from_command_line_parameters(args: argparse.Namespace) -> "ConfidenceIntervalElement":
if args.confidenceinterval_position_size_ratio is None or args.confidenceinterval_position_size_ratio == 0:
raise Exception("No position-size ratio specified.")
order_type: mango.OrderType = args.order_type
position_size_ratio: Decimal = args.confidenceinterval_position_size_ratio
confidence_interval_levels: typing.Sequence[Decimal] = args.confidenceinterval_level
if len(confidence_interval_levels) == 0:
confidence_interval_levels = [Decimal(2)]
return ConfidenceIntervalElement(order_type, position_size_ratio, confidence_interval_levels)
def process(self, context: mango.Context, model_state: ModelState, orders: typing.Sequence[mango.Order]) -> typing.Sequence[mango.Order]:
price: mango.Price = model_state.price
if price.source.supports & mango.SupportedOracleFeature.CONFIDENCE == 0:
raise Exception(f"Price does not support confidence interval: {price}")
quote_value_to_risk = model_state.inventory.available_collateral.value * self.position_size_ratio
position_size = quote_value_to_risk / price.mid_price
new_orders: typing.List[mango.Order] = []
for confidence_interval_level in self.confidence_interval_levels:
charge = price.confidence * confidence_interval_level
bid: Decimal = price.mid_price - charge
ask: Decimal = price.mid_price + charge
bid_order = mango.Order.from_basic_info(mango.Side.BUY, price=bid,
quantity=position_size, order_type=self.order_type)
ask_order = mango.Order.from_basic_info(mango.Side.SELL, price=ask,
quantity=position_size, order_type=self.order_type)
self.logger.debug(f"""Desired orders:
Bid: {bid_order}
Ask: {ask_order}""")
new_orders += [bid_order, ask_order]
new_orders.sort(key=lambda ord: ord.price, reverse=True)
order_text = "\n ".join([f"{order}" for order in new_orders])
top_bid = model_state.top_bid
top_ask = model_state.top_ask
self.logger.debug(f"""Initial desired orders - spread {model_state.spread} ({top_bid.price if top_bid else None} / {top_ask.price if top_ask else None}):
{order_text}""")
return new_orders
def __str__(self) -> str:
confidence_interval_levels = ", ".join(map(str, self.confidence_interval_levels)) or "None"
return f"« 𝙲𝚘𝚗𝚏𝚒𝚍𝚎𝚗𝚌𝚎𝙸𝚗𝚝𝚎𝚛𝚟𝚊𝚕𝙴𝚕𝚎𝚖𝚎𝚗𝚝 {self.order_type} - position size: {self.position_size_ratio}, confidence interval levels: {confidence_interval_levels} »"