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:
Low Breakout Condition:
Parameters
period
: Look-back period for breakout calculation (default:20
)
Last updated