The Strategies:
With this release, you can operate on 3 markets (Poloniex, Kraken, Bittrex) using different strategies:
1- Pure EMA ping-pong: let your bot buy at a fixed % below EMA and sell at a fixed percentual above EMA.
These are the settings to use for this strategy:
- SELL_STRATEGY: 'GAIN', //sell strategy to use (BB or GAIN)
- BUY_STRATEGY: 'GAIN', // buy strategy to use (BB or GAIN)
- BUY_LEVEL: 1, //percentual from weighted price you want to buy if you want to use GAIN strategy
- BITTREX_GAIN: 2, // margin to sell on bittrex
- KRAKEN_GAIN: 2, // margin to sell on kraken
- GAIN: 2, // margin to sell on poloniex
With this settings your bot will buy at 1% below ema and sell at 2% above ema (you can set sell levels per each market.
Does this match the strategy on the first page where the bot buys/sells when the EMA lines cross? How does this strategy in the quote work, and what exactly does "Buy at 1% below EMA and sell at 2% above EMA" mean? Which EMA is it buying/selling above/below - EMA1 or EMA2?
Thanks,
-StarBruck