Tradient
Visual Builder

Building a Simple Strategy

Step-by-step guide to creating a basic strategy with the Visual Builder.

Let's build a simple RSI mean reversion strategy step by step. This strategy buys when the market is oversold and sells when it's overbought.

Step-by-Step

  1. 1Open the Visual Builder and create a new strategy
  2. 2Drag an RSI Indicator block onto the canvas. Set the period to 14
  3. 3Drag a Condition block and connect it to the RSI output. Set the condition to "RSI < 30" — this is our buy signal
  4. 4Drag a Buy Action block and connect it to the condition. Set it to buy with a fixed position size
  5. 5Create another Condition block connected to RSI. Set it to "RSI > 70" — this is our sell signal
  6. 6Drag a Close Position block and connect it to the sell condition
  7. 7Add a Stop Loss block and set it to 2% below entry price
  8. 8Add a Take Profit block and set it to 4% above entry price
  9. 9Connect the risk blocks to the Buy action
  10. 10Save and run a backtest to see results

Once you're comfortable with this pattern, try replacing RSI with other indicators or adding multiple conditions for more refined entries.