Skip to content

Strategy Concepts

A trading strategy is a set of rules that determine when to buy and sell financial instruments. In Quantum Trader, strategies consist of:

  1. Entry Conditions - Rules that trigger opening a position
  2. Exit Conditions - Rules that trigger closing a position
  3. Position Sizing - How much capital to allocate per trade

Built using the visual rule builder. Combine indicators and conditions without writing code.

Best for:

  • Beginners
  • Quick prototyping
  • Simple indicator combinations

Written in Python using our strategy DSL. Full control over logic and execution.

Best for:

  • Complex logic
  • Custom indicators
  • Advanced position sizing

Strategies generate signals based on market conditions:

SignalAction
BUYOpen a long position
SELLClose the position
HOLDMaintain current position

Backtesting simulates strategy performance on historical data. It helps you:

  • Validate strategy logic
  • Estimate expected returns
  • Identify potential issues