TWAZI

Box Strategy Selector

Selects an appropriate trading strategy based on market conditions and box patterns.

Inputs

  • Market Data required: Historical price and volume data
  • Box Parameters required: Configuration for box pattern detection
  • Strategy Options required: Available trading strategies

Example

{
  "Market Data": {
    "prices": [100, 105, 102, 108, 106],
    "volumes": [1000, 1200, 800, 1500, 900],
    "timeframe": "1h"
  },
  "Box Parameters": {
    "boxSize": 5,
    "minTouches": 3,
    "lookbackPeriods": 50
  },
  "Strategy Options": ["breakout", "reversal", "range"]
}

Outputs

  • Selected Strategy: The chosen trading strategy based on analysis
  • Box Analysis: Detailed box pattern analysis results
Box strategy selector workflow example

On this page

Edit on GitHub