Bots

Strategy: Bot checks 24 conditions and trades only when every single condition is true. Because of this, bot can skip some profitable situations but each trade is profitable with the highest probability.
Bot checks 24 conditions and trades only when every single condition is true. Because of this, bot can skip some profitable situations but each trade is profitable with the highest probability.
When bot predict consuming of the next candlestick, it checks for confirmation which can be either window for a new tendency or crossing trend line or any other programmed sign of moving price in positive way. Algorithm also have stability coefficient to prevent buying from resold candlestick, which bot detects using Bollinger bands. If every condition met, bot enters stock and waiting for profit. To prevent huge losses bot using stop-loss coefficient which value is dynamically established by bot itself.

Strategy: Bot checks 24 conditions but depends on previous results can skip some false conditions. Because of this bot trades more often and gives more profit that 'Conservative bot'. But it has lower precision.
Bot checks 24 conditions but depends on previous results can skip some false conditions. Because of this bot trades more often and gives more profit that 'Conservative bot'. But it has lower precision.
Algorithm using pattern of reversing bar. First point defined by High or Low point which are the highest or lowest comparing to surrounding. Next bar from first candlestick is the second point. It serves as defining signal. If candlestick that contains that points is closing then bot change pattern status to 'formed'. Third candlestick will be user profit. This bot trying to catch stock impulses to take small profit from small exhange rates changes. Trading starts at the beginning of third candlestick. If stochastic coefficient denying entering then bot will skip signal

Strategy: Bot ckecks only 12 conditions. It allows to catch up with all profitable situations. This bot has the lowest precision but when trand rising it will give the most profit.
Bot ckecks only 12 conditions. It allows to catch up with all profitable situations. This bot has the lowest precision but when trand rising it will give the most profit.
To calculate channel parameters bot uses smoothed exponential average. Bot is building two lines - first one using High points of candlestick and second one from Low points. Bot starts trading when bullish candlestick closed in channel's center. Stop-loss and take-profit coefficients are established dynamically by bot.