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

# Examples by Indicator

> Practical trading idea examples grouped by indicator type.

## How to use this page

This page shows **concrete trading idea examples**, grouped by indicator.

The goal is not to provide “best strategies”, but to:

* show typical usage patterns
* demonstrate clean, readable logic
* help you translate intuition into structure

You can copy, modify, or combine these examples.

***

## Moving Averages (SMA / EMA)

### Trend-following crossover

```text theme={null}
Trade BTC/USDT on the 1h timeframe.
Go long when EMA(20) crosses above EMA(50).
Exit with a 5% take profit and a 1% stop loss.
```

### Trend filter + pullback

```text theme={null}
Trade ETH/USDT on 15m.
Only trade long when EMA(50) is above EMA(200).
Go long when price pulls back to EMA(20).
Exit with a 4% take profit and a 1% stop loss.
```

***

## RSI

### Oversold mean reversion

```text theme={null}
Trade ETH/USDT on 1h.
Go long when RSI(14) drops below 30.
Exit when RSI(14) crosses above 50.
```

### Momentum confirmation

```text theme={null}
Trade BTC/USDT on 4h.
Go long when RSI(14) is above 55.
Exit with a 6% take profit and a 2% stop loss.
```

***

## MACD

### Momentum crossover entry

```text theme={null}
Trade BTC/USDT on 1h.
Go long when MACD line crosses above the signal line.
Exit when MACD crosses below the signal.
```

### Trend + MACD confirmation

```text theme={null}
Trade ETH on 1h.
Only trade long when EMA(50) is above EMA(200).
Go long when MACD crosses above signal.
Exit with a 5% take profit and 1% stop loss.
```

***

## Supertrend

### Trend change entry

```text theme={null}
Trade BTC/USDT on 1h.
Go long when Supertrend flips to buy.
Exit when Supertrend flips to sell.
```

### Trend filter only

```text theme={null}
Trade ETH/USDT on 15m.
Only trade long when Supertrend is bullish.
Use EMA(20)/EMA(50) crossover for entries.
```

***

## ATR (Volatility)

### Volatility filter

```text theme={null}
Trade BTC on 1h.
Only trade when ATR(14) is above its 20-period average.
Go long on EMA(20)/EMA(50) crossover.
Exit with a 5% take profit and 1% stop loss.
```

### ATR-based stop logic

```text theme={null}
Trade ETH on 4h.
Go long when RSI(14) crosses above 50.
Use a stop loss equal to 1.5 x ATR(14).
```

***

## Volume

### Breakout confirmation

```text theme={null}
Trade BTC/USDT on 15m.
Go long when price breaks above previous high.
Require volume to be above its 20-period average.
Exit with a 4% take profit and a 1% stop loss.
```

***

## Bollinger Bands

### Mean reversion

```text theme={null}
Trade ETH/USDT on 1h.
Go long when price touches the lower Bollinger Band.
Exit when price returns to the middle band.
```

### Volatility expansion

```text theme={null}
Trade BTC/USDT on 4h.
Go long when price closes above the upper Bollinger Band.
Exit with a 6% take profit and a 2% stop loss.
```

***

## Using multiple indicators together

```text theme={null}
Trade BTC/USDT on 1h.
Go long when:
- EMA(20) is above EMA(50)
- RSI(14) is above 50
- Volume is above average
Exit with a 5% take profit and a 1% stop loss.
```

<Info>
  Multiple indicators should each add new information.
</Info>

***

## Common mistakes

<AccordionGroup>
  <Accordion title="Copying examples without understanding them">
    Always understand what each indicator measures.
  </Accordion>

  <Accordion title="Using the same indicator twice">
    Similar indicators often provide redundant signals.
  </Accordion>

  <Accordion title="Stacking confirmations blindly">
    More confirmations can reduce opportunity dramatically.
  </Accordion>
</AccordionGroup>

***

## What to read next

<CardGroup cols={2}>
  <Card title="Indicator parameters" icon="sliders" href="/indicators-logic/indicator-parameters">
    How parameters affect these examples.
  </Card>

  <Card title="Operators & conditions" icon="code-branch" href="/indicators-logic/operators-and-conditions">
    Understand the logic behind examples.
  </Card>

  <Card title="Writing trading ideas" icon="pen-fancy" href="/writing-ideas/how-to-write-a-trading-idea">
    Learn to express these patterns clearly.
  </Card>

  <Card title="Beginner examples" icon="seedling" href="/writing-ideas/examples-beginner">
    Simpler strategy ideas.
  </Card>
</CardGroup>

<Note>
  Examples show *how* something can work, not *that* it will work.
</Note>
