> ## Documentation Index
> Fetch the complete documentation index at: https://uncoded.ch/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuration examples

> Ready-to-use strategy configurations for different risk profiles, from conservative to aggressive.

Explore example configurations to tailor unCoded for different trading strategies and risk profiles. Use these as starting points and adapt them to your goals.

<Warning>
  The configurations shown here are for illustration purposes only. They do not constitute financial advice. Use them at your own risk — no liability is assumed for any potential losses.
</Warning>

***

<Tabs>
  <Tab title="Conservative">
    **Objective:** Minimize risk while ensuring steady, long-term growth. Focus on small, consistent gains with a higher reserve capital buffer.

    <CodeGroup>
      ```text conservative.conf theme={null}
      baseAsset=ETH
      quoteAsset=USDC
      mode=4
      buyPercentage=0.2
      investmentPerBuy=10
      buySplits=5
      buyVolumes=30,25,20,15,10
      sellPercentages=0.25,0.5,0.75,1,1.5
      sellActivateDistancePercentage=0.2
      sellCancelDistancePercentage=1.5
      ```
    </CodeGroup>

    **Key parameter notes:**

    * **`buyPercentage`** — Set to `0.2%` to trigger buys only during significant dips, reducing the number of trades.
    * **`investmentPerBuy`** — Lower investment of `$10` per buy reduces overall exposure per trade.
    * **`sellPercentages`** — Conservative profit targets starting at `0.25%` ensure the bot locks in gains early.
    * **`sellActivateDistancePercentage`** — Sell orders activate after a `0.2%` recovery from the dip, avoiding premature sells.
  </Tab>

  <Tab title="Aggressive">
    **Objective:** Maximize returns in high-volatility markets. Accept higher risks for larger potential rewards.

    <CodeGroup>
      ```text aggressive.conf theme={null}
      baseAsset=ETH
      quoteAsset=USDC
      mode=4
      buyPercentage=0.05
      investmentPerBuy=30
      buySplits=10
      buyVolumes=10,10,10,10,10,10,10,10,10,10
      sellPercentages=0.1,0.2,0.3,0.4,0.5,0.75,1,1.5,2,3
      sellActivateDistancePercentage=0.05
      sellCancelDistancePercentage=0.5
      ```
    </CodeGroup>

    **Key parameter notes:**

    * **`buyPercentage`** — Set to `0.05%` for frequent trades that capture small price movements.
    * **`investmentPerBuy`** — Higher per-trade investment of `$30` amplifies both gains and losses.
    * **`sellPercentages`** — Aggressive profit zones with multiple smaller gains distributed across 10 splits.
    * **`sellActivateDistancePercentage`** — Quick sell activation at a `0.05%` recovery, suited to fast-moving markets.
  </Tab>

  <Tab title="Balanced">
    **Objective:** A mix of conservative and aggressive elements for moderate risk and moderate returns.

    <CodeGroup>
      ```text balanced.conf theme={null}
      baseAsset=ETH
      quoteAsset=USDC
      mode=4
      buyPercentage=0.1
      investmentPerBuy=20
      buySplits=7
      buyVolumes=25,20,15,15,10,10,5
      sellPercentages=0.25,0.35,0.5,0.75,1,2,5
      sellActivateDistancePercentage=0.1
      sellCancelDistancePercentage=1
      ```
    </CodeGroup>

    **Key parameter notes:**

    * **`buyPercentage`** — Set to `0.1%` (the default) for moderate trading frequency.
    * **`investmentPerBuy`** — Standard investment of `$20` per trade.
    * **`buyVolumes`** — Balanced weight distribution across 7 splits, with more weight on early entries.
    * **`sellPercentages`** — Targets a mix of small quick gains and larger longer-term profits.
  </Tab>

  <Tab title="High reserve">
    **Objective:** Ensure sustainable trading even during prolonged market downturns. Prioritize capital preservation over aggressive trading.

    <CodeGroup>
      ```text high-reserve.conf theme={null}
      baseAsset=ETH
      quoteAsset=USDC
      mode=4
      buyPercentage=0.15
      investmentPerBuy=10
      buySplits=4
      buyVolumes=40,30,20,10
      sellPercentages=0.5,1,1.5,2
      sellActivateDistancePercentage=0.3
      sellCancelDistancePercentage=2
      ```
    </CodeGroup>

    **Key parameter notes:**

    * **`buyPercentage`** — Requires a `0.15%` drop before purchasing, reducing trade frequency.
    * **`investmentPerBuy`** — Lower per-trade amount of `$10` conserves funds across a downturn.
    * **`sellCancelDistancePercentage`** — Higher threshold of `2%` accounts for significant market dips before canceling sell orders.
    * **`buyVolumes`** — Front-loaded distribution (40%, 30%, 20%, 10%) prioritizes the first entry point.
  </Tab>

  <Tab title="Custom template">
    **Objective:** Tailored for your specific goals. Use this template as a starting point to build your own strategy.

    <CodeGroup>
      ```text custom.conf theme={null}
      baseAsset=ETH
      quoteAsset=USDC
      mode=4
      buyPercentage=[your value]
      investmentPerBuy=[your value]
      buySplits=[your value]
      buyVolumes=[your values]
      sellPercentages=[your values]
      sellActivateDistancePercentage=[your value]
      sellCancelDistancePercentage=[your value]
      ```
    </CodeGroup>

    **Customization tips:**

    * Adjust **`buyPercentage`** based on current market volatility — lower in volatile markets, higher in steady ones.
    * Experiment with **`sellPercentages`** to balance quick profits (lower values) and long-term gains (higher values).
    * Use **`buySplits`** and **`buyVolumes`** to control how capital is allocated across entry points.
  </Tab>
</Tabs>

***

For guidance on tuning these parameters further, see [Advanced configuration tips](/configuration/advanced-tips).
