HiveFi
  • About HiveFi
  • Invest in Strategies (Coming soon)
  • Build Strategies
  • Road map
    • Alpha v0
Powered by GitBook
On this page
  • Alpha v0
  • Supported Strategies
  1. Road map

Alpha v0

Alpha v0

Timeline: 2025 Q2

Overview: Alpha v0 is our initial test release featuring a minimal implementation. At this stage, users can select from pre-defined trading strategies and adjust only the provided parameters.

Primary Objectives:

  • Validate core functionality and ensure system stability.

  • Collect targeted user feedback to guide further development.

  • Identify and promptly resolve critical usability or technical issues.

This version serves as the foundational step toward enabling more flexible and customizable strategy-building in subsequent releases.


Supported Strategies

Breakout Strategy

Summary: A trend-following strategy that enters positions when the price breaks above or below the high/low of a specified period.

Core Logic

  • Calculate the highest and lowest prices over a specified period.

  • Enter a long position if the current price breaks above the highest price.

  • Enter a short position if the current price breaks below the lowest price.

  • Reverse the position when a breakout occurs in the opposite direction.

Formulas

High Breakout Condition:

Price_current > max(Price_t-1, Price_t-2, ..., Price_t-period)

Low Breakout Condition:

Price_current < min(Price_t-1, Price_t-2, ..., Price_t-period)

Parameters

  • period: Look-back period for breakout calculation (default: 20)

PreviousRoad map

Last updated 1 day ago