Dynamic Take Profit and Stop Loss
Instead of setting static percentages for take profit and stop loss, the bot can constantly monitor the market situation and set the targets dynamically.
The mechanism involves 2 key elements, the measurement of volatility and the moving average.
Dynamic Take Profit
The volatility is measured by ATR (which is a technical analysis indicator originally developed by J. Welles Wilder, Jr.), and gives an absolute value that indicates the price could possibly range within in the near future.
There is a selection of moving average types like MA, EMA or KAMA can be chosen from.
And the proportion of volatility and moving average is used to set up the take profit target. Here is an example:
Dynamic Stop Loss
Similar to Dynamic Take Profit, it is based on ATR and moving average, but different from the static setup, it DOES NOT use percentage, it uses an absolute value instead, and no trailing. Here is an example:
Last updated
Was this helpful?