This strategy is true when the PIVOTPOINT return value is larger than your buy or sell value when using a positive value. Or smaller than your value when using a negative buy or sell value.
Use Tradingview to visualize this indicator.
View on TradingView
# Buy when price is 1% or higher above PIVOTPOINT value
DEFAULT_A_buy_strategy = PIVOTPOINT
DEFAULT_A_buy_value = 1
# Sell when price is -0.5% or lower than PIVOTPOINT value
DEFAULT_A_sell_strategy = PIVOTPOINT
DEFAULT_A_sell_value = -0.5
# Buy when price is 1% or higher above PIVOTPOINT value
DEFAULT_DCA_A_buy_strategy = PIVOTPOINT
DEFAULT_DCA_A_buy_value = 1
# Sell when price is -0.5% or lower than PIVOTPOINT value
DEFAULT_DCA_A_sell_strategy = PIVOTPOINT
DEFAULT_DCA_A_sell_value = -0.5
# 1 hour candle / timeframe
PIVOTPOINT_candle_period = 3600