Skip to content

Creating Custom Strategies

The visual strategy builder lets you create trading strategies without writing code.

Every strategy consists of:

  1. Entry Conditions - When to open a position (buy)
  2. Exit Conditions - When to close a position (sell)
  3. Logic Operator - How conditions combine (AND/OR)
IndicatorParametersDescription
SMAperiodSimple Moving Average
EMAperiodExponential Moving Average
RSIperiodRelative Strength Index (0-100)
MACDfast, slow, signalMoving Average Convergence Divergence
MACD_SIGNALfast, slow, signalMACD Signal Line
BB_UPPERperiod, stdBollinger Band Upper
BB_LOWERperiod, stdBollinger Band Lower
ATRperiodAverage True Range
PRICE-Current closing price
  1. Navigate to Strategies

    Go to the Dashboard and click “Strategies” in the sidebar.

  2. Create New Strategy

    Click the “New Strategy” button.

  3. Add Entry Condition

    Configure when to buy:

    • Select indicator (e.g., RSI)
    • Set parameters (e.g., period: 14)
    • Choose operator (e.g., “less than”)
    • Set comparison value (e.g., 30)
  4. Add Exit Condition

    Configure when to sell:

    • Select indicator (e.g., RSI)
    • Set parameters (e.g., period: 14)
    • Choose operator (e.g., “greater than”)
    • Set comparison value (e.g., 70)
  5. Save Strategy

    Give it a descriptive name and save.

All conditions must be true to trigger a signal.

Entry: RSI < 30 AND Price < BB_Lower

Any condition being true triggers a signal.

Entry: RSI < 25 OR Price < BB_Lower
  1. Start Simple - Begin with 1-2 conditions
  2. Backtest Thoroughly - Test across multiple time periods
  3. Avoid Overfitting - Too many conditions = curve fitting
  4. Consider Costs - Account for commissions and slippage