Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #76

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open

Develop #76

wants to merge 23 commits into from

Commits on Aug 9, 2023

  1. Configuration menu
    Copy the full SHA
    0332a20 View commit details
    Browse the repository at this point in the history
  2. app: add dca limit orders to average entry price

    dca feature must be enabled with "DCA_TYPE=DCA_AVERAGE_ENTRIES" and allows to place additional DCA_SAFETY_ORDERS,
    as limits orders. The position size fro any additional order is scaled by DCA_VOLUME_SCALE and the price deviation for
    any orders is DCA_PRICE_DEVIATION_PRC.
    Unfilled limit orders ore handles when the trade will be closed and also after in the main loop a routine perform a consistency check and remove orphan orders.
    WARNING: This an experimental feature, play with it at your own risk.
    arrabyte committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    53fa358 View commit details
    Browse the repository at this point in the history
  3. scalp: increment openPosition count to handle burst of liquidations a…

    …nd multiple scalp enqueued
    arrabyte committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    2d6f8d9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    67717bd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1f21d84 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2023

  1. feature: add a paused list to manually set tp on paused tokens

    set PAUSED_LIST in config when you want to set a custom take profit manually,
    for example directy from the exchange ui.
    PAUSED token will be normally tracked but tp ad sl won't be recalculated.
    arrabyte committed Aug 13, 2023
    Configuration menu
    Copy the full SHA
    f7a27e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a25ed1c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ffcf7c View commit details
    Browse the repository at this point in the history
  4. app: simplify trade_info._liquidity_trigger log

    Now liquidity_trigger store only liquidation value that happen on a specific dca order without considering past liquidation value.
    Past liquidation value are tracked anyway by previous log occurring on previous DCA order.
    arrabyte committed Aug 13, 2023
    Configuration menu
    Copy the full SHA
    6b9f3d6 View commit details
    Browse the repository at this point in the history
  5. app: major fix settings update

    Settings was not synched with minOrderSize update
    arrabyte committed Aug 13, 2023
    Configuration menu
    Copy the full SHA
    6439d3d View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. cache exchange calls

    avoid to perform the same rest api call many times in the same main loop
    arrabyte committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    bbe02a5 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. feature: testnet to handle orders

    require the api for testnet account
    require a real api key to receive liquidation info
    arrabyte committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    fe2aa3a View commit details
    Browse the repository at this point in the history
  2. trace trades as json format

    arrabyte committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    69977d6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    be62e19 View commit details
    Browse the repository at this point in the history
  4. trades history: store roi

    arrabyte committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    3371599 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c10862a View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Configuration menu
    Copy the full SHA
    cb5837f View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. app: fix orphan orders handling

    Remove orphan order handling from main loop as sometimes happens that new order is placed but not
    available by bybit api and new order are prematurely cancelled.
    Orphan order are handled only at start and when the order is closed.
    arrabyte committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    d77e1d2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcce816 View commit details
    Browse the repository at this point in the history
  3. App: remove settings files from repo

    Settings files are created during execution and should be removed from repo
    arrabyte committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    b235222 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2023

  1. Configuration menu
    Copy the full SHA
    6734df9 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2023

  1. Configuration menu
    Copy the full SHA
    c42223f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bbdb3d6 View commit details
    Browse the repository at this point in the history