Home  ›  SignalPipe  ›  Documentation  ›  The DCA Ladder System

The DCA Ladder System

The DCA Ladder System

DCA (Dollar-Cost Averaging) is the strategy of buying more units of an asset as its price drops, lowering your average cost basis. SignalPipe implements a full DCA ladder system that automatically manages this process.

How the Ladder Works

Each deal starts at ladder level 1 (the base position). Every time a new buy signal fires for the same instrument while the deal is active, a new sub-position is opened, moving the ladder to the next level.

On Capital.com, each DCA step is a separate position (sub-position), all tracked together as one deal in SignalPipe.

Ladder LevelPosition TypeWhat Happens
1Base PositionInitial buy that opens the deal
2Safety Position #1First DCA buy -- averages down entry
3Safety Position #2Second DCA buy -- averages down further
4Safety Position #3Third DCA buy
......Continues for each new buy signal

Weighted Average Entry Price

The core of the DCA system is the weighted average entry price calculation. After each safety order, the average is recalculated:

new_avg_entry = (old_total_cost + new_position_cost) / new_total_size

Where:

  • old_total_cost = previous avg entry price previous total size
  • new_position_cost = safety position fill price safety position size
  • new_total_size = previous total size + safety position size

Take-Profit Recalculation

Every time the average entry price changes, the take-profit target is recalculated:

new_tp_level = new_avg_entry * (1 + tp_percent / 100)

All open sub-positions in the deal are modified with the new TP level. This means every sub-position in the deal always shares the same take-profit price.

DCA Ladder Example

Assume a 5% take-profit setting and a base order of 10 units:

StepActionPriceSizeTotal SizeAvg EntryTP Target
1Base position$100.001010$100.00$105.00
2Safety #1$90.001525$94.00$98.70
3Safety #2$85.002247$89.26$93.72
Notice the effect of the DCA ladder:
  • After the base position, the price needs to reach $105.00 for a 5% profit
  • After safety position #1, the TP drops to $98.70 -- already below the original entry price
  • After safety position #2, the TP drops further to $93.72

The more the price drops and the more safety positions are opened, the closer the TP target moves to the current price. This dramatically increases the probability of the take-profit being reached.

Safety Order Volume Scaling

The vyn premium strategy supports a Safety Order Volume Scale setting. This multiplier increases the size of each successive safety order. For example, with a scale of 1.5x:

  • Base position: $1,000 worth of units
  • Safety #1: $1,500 worth of units
  • Safety #2: $2,250 worth of units

Larger safety positions at lower prices have a greater impact on bringing down the average entry, but they also increase total capital commitment. Choose a scale that matches your risk tolerance and account size.

This is a static view of a single section. For full search and interactivity visit the docs app. Open interactive docs →