Advanced Trading: Limit Orders, DCA, & Perpetuals ⚙️
Automate your strategy and access powerful trading tools.
Limit Orders
What it is: Set an order to automatically buy or sell a token when it reaches a price you've chosen. This is perfect for executing trades while you're away.
Command Examples:
Sell my ETH when it hits $4,000Buy DOGE if the price drops 10%Check my limit order status
How it Works (Under the Hood):
These commands use the
'limit_buy'and'limit_sell'operation types. Tator creates an order with atarget_priceorprice_percentageand monitors the market. When your condition is met, the trade executes automatically.
Dollar-Cost Averaging (DCA)
What it is: Set up a schedule to automatically buy or sell a fixed amount of a token at regular intervals. This is a great way to build a position over time and reduce the impact of market volatility.
Command Examples:
DCA $20 into ETH weekly for 3 monthsStart a daily recurring buy of $5 of BTCSell 1000 USDC every day for the next 30 daysPause my ETH DCA plan
UI Mode: Use the "DCA" button to configure your automated trading plan.
[UI Screenshot of the DCA setup screen showing frequency and amount options]
How it Works (Under the Hood):
This creates a
'dca_buy'or'dca_sell'operation. TheDCAConfigobject stores your plan'sfrequency('hourly','daily','weekly'),amount_per_execution, and duration (total_budgetormax_executions). Tator's backend service then executes these trades for you automatically.
Perpetuals Trading (Leverage)
What it is: Trade with leverage (borrowed funds) to amplify your potential gains (and risks). Go "long" if you believe an asset's price will rise, or "short" if you believe it will fall.
Command Examples:
Long BTC with $100 at 5x leverageShort ETH with 10xShow my perp positionsClose 50% of my BTC long
How it Works (Under the Hood):
Tator integrates with leading perpetuals platforms like Hyperliquid. These commands use operation types like
'perp_long'and'perp_short'. The operation specifies theleverage(e.g., 2-50x) andposition_side('long'or'short').
Last updated