Strategy settings

I use filters and if they pass, the strategy buys the coin, but I want to sell the position as soon as the filters stop passing my conditions again, how do I implement this?

To solve your problem, use the SellByFilters parameter in the strategy settings, in which you can specify the time in seconds after the coin purchase, after which you can sell the position if the filters no longer meet the specified conditions. If you write zero in the parameter, this parameter will not be used in

I use filters and if they pass, the strategy buys the coin, but I want to sell the position as soon as the filters stop passing my conditions again, how do I implement this? Read More »

After buying a coin, I have a Sell order set at the same value, but is it possible to adjust it and set it for example just below the maximum for a certain time?

Yes, you can do that, there is a whole group of parameters “SellLevel…” in the “Sell order” tab of the strategy settings, where you can specify the delay for moving the Sell order, specify the period for price analysis and calculate the maximum on this period, and then move the Sell order above or below

After buying a coin, I have a Sell order set at the same value, but is it possible to adjust it and set it for example just below the maximum for a certain time? Read More »

I place a small SellPrice and would like to place it just below large limit orders to close the position the fastest. How can I do this in MoonBot?

In the MoonBot terminal in the strategy settings there is a parameter that will help you – it is UseScalpingMode, if checked (YES) and if SellPrice is set less than 1%, it will use “scalping mode”, in which the bot can increase the price up to 2%, depending on the ASK rate. Some sort of

I place a small SellPrice and would like to place it just below large limit orders to close the position the fastest. How can I do this in MoonBot? Read More »

I want Sell order at auto price drop to not go lower than +0.5% of the buy price, how do I set such a restriction?

In the strategy settings, there are a number of parameters that are responsible for the Sell order auto-drop after a certain period of time. The parameter you need is PriceDownAllowedDrop and it specifies the value in percent of the buy price, by which you can lower the Sell order at auto-drop. In your case, you

I want Sell order at auto price drop to not go lower than +0.5% of the buy price, how do I set such a restriction? Read More »

Where in the strategy settings can I set a delay for the next auto-lowering step if, for example, I need to lower the Sell order every 30 seconds?

There are a number of parameters in the strategy settings that are responsible for the automatic reduction of a Sell order after a certain period of time. The delay in price reduction steps in seconds is set in the PriceDownDelay parameter. How it works: after buying a coin, we first try to sell at the

Where in the strategy settings can I set a delay for the next auto-lowering step if, for example, I need to lower the Sell order every 30 seconds? Read More »

Can I reduce the price in the MoonBot terminal not in absolute values, for example, every 0.2%, but in relative values?

Yes, you can do this with the PriceDownRelative parameter in the strategy settings: If NO, it is the percentage of the absolute price; if YES, it is the difference between the current sell and buy price. Example 1: If SellPrice=1%, PriceDownRelative=NO, PriceDownPercent=0.2%, then after the set time SellPrice decreases from 1% to 0.8%, in other

Can I reduce the price in the MoonBot terminal not in absolute values, for example, every 0.2%, but in relative values? Read More »