FIXEDPRICE is as the name says a fixed price buying/selling strategy.
Use buy_strategy_direction and sell_strategy_direction to tell the bot when to go true.
FIXEDPRICE_source = (ASK,BID or LAST)
An example use of this strategy is to buy as soon as the ask price of a pair is below our specified price.
# Buy zone begins when the ask price for BTT is below 16 satoshi.
BTT_A_buy_strategy = FIXEDPRICE
BTT_A_buy_strategy_direction = DOWN
BTT_A_buy_value = 0.00000016
# Sell zone begins when the ask price for BTT is above 32 satoshi.
BTT_A_sell_strategy = FIXEDPRICE
BTT_A_sell_strategy_direction = UP
BTT_A_sell_value = 0.00000032
# Buy zone begins when the ask price for BTT is below 16 satoshi.
BTT_DCA_A_buy_strategy = FIXEDPRICE
BTT_DCA_A_buy_strategy_direction = DOWN
BTT_DCA_A_buy_value = 0.00000016
# Sell zone begins when the ask price for BTT is below 32 satoshi.
BTT_DCA_A_sell_strategy = FIXEDPRICE
BTT_DCA_A_sell_strategy_direction = DOWN
BTT_DCA_A_sell_value = 0.00000032
FIXEDPRICE_source = ASK
It is recommended to use this strategy only with PAIR specific overrides as different coins have different prices.