Quick Start Guide
Build your first automated trading strategy in under 5 minutes.
Overview
In this guide, we will build a classic **Simple Moving Average (SMA) Crossover** strategy. The logic is simple:
- Buy when the fast SMA (10) crosses above the slow SMA (20).
- Sell when the fast SMA (10) crosses below the slow SMA (20).
Step 1: Create a New Strategy
- Log in to the EdgeKeeper Dashboard.
- Click the "New Strategy" button.
- Name your strategy "My First Bot" and click Create.
Step 2: Add Data Source
Every strategy needs market data.
- Open the Node Library (left sidebar).
- Drag a Candle Data node onto the canvas.
- Set the Symbol to
BTC/USDand Timeframe to1h.
Step 3: Add Indicators
We need two SMA indicators.
- Drag two SMA nodes from the Indicators category.
- Connect the
Closeoutput of the Candle Data node to theSourceinput of both SMA nodes. - Set the Period of the first SMA node to
10(Fast). - Set the Period of the second SMA node to
20(Slow).
Step 4: Define Logic
Now we determine when to buy or sell.
- Drag a Cross Over node from the Logic category.
- Connect the Fast SMA output to input A.
- Connect the Slow SMA output to input B.
- This node will output
Truewhen the Fast SMA crosses above the Slow SMA.
Step 5: Execute Orders
- Drag a Market Buy node from the Execution category.
- Connect the output of the Cross Over node to the
Triggerinput of the Market Buy node.
Step 6: Run Backtest
Click the Run Backtest button in the top toolbar. Wait a few seconds, and you'll see the performance report!
🎉 Congratulations! You just built your first algorithmic trading bot without writing a single line of code.