Dollar-Cost Averaging (DCA)

The goal of this task is to periodically buy a fixed amount of a token using slippage-protected swaps.

For example, suppose the inputs are:

  • Token In: USDC

  • Token Out: WETH

And the cron trigger schedule is 30 19 * * 0, meaning:

  • 30 -> minute

  • 19 -> hour UTC

  • * -> every day of the month

  • * -> every month

  • 0 -> 0 = Sunday, 1 = Monday, etc

Then the task will buy 100 USDC worth of WETH every Sunday at 7:30 PM UTC.

Task

Manifest

Last updated