Savers Guide

How the "Smart Entry" Works

Unlike a standard swap where you buy now (regardless of price), Aureo helps you buy smart using our Python Agent.

1

The Setup

You define your buy parameters in the Agent settings (or UI Dashboard).

  • Target Price: e.g., "$2,600 / oz"

  • Strategy: "Buy the Dip" (Agent monitors volatility)

  • Amount: e.g., 50 USDC per buy

2

The Monitoring (Off-Chain)

The Python Agent runs a loop every minute and:

  • Fetches getGoldPrice18Decimals() from the Contract (Oracle Data).

  • Compares it with your TARGET_PRICE.

  • Checks Gemini AI sentiment (optional).

Example pseudocode:

agent_loop.py
while True:
    price = contract.getGoldPrice18Decimals()
    if price <= TARGET_PRICE and sentiment_ok():
        trigger_execution()
    sleep(60)
3

The Execution (On-Chain)

When the price hits your target, the automation kicks in:

  • Agent triggers the contract call:

  • Contract calculates the precise gold grams with:

(50 * 1e18) / Price


- Result: You receive `mGOLD` tokens instantly in your wallet.

</div>

</div>

<div data-gb-custom-block data-tag="hint" data-style='info'>

Why this is better?

- No FOMO: You stick to your plan and avoid emotional buying.  
- No Staring at Charts: The bot does the hard work 24/7.  
- Fair Pricing: You get the exact Oracle price at the moment of execution, with **0% slippage**.

</div>