Strategy settings

What does “Master” and “Slave” mean in trigger settings?

In the strategy settings there is Triggers Master/Slave tab, which parameters are divided into two parts: the upper part (from TriggerKeyBuy parameter to TriggerAllMarkets parameter) is intended for master strategy setting, and the lower part (from TriggerByKey parameter to CancelByTriggerBL parameter) is for slave strategy setting, which waits for the trigger key from Master strategy

What does “Master” and “Slave” mean in trigger settings? Read More »

What is the purpose of the PreventWorkingUntil parameter on the Filters tab of the MoonBot terminal strategy settings?

On the Filters tab of the MoonBot strategy settings there is a PreventWorkingUntil parameter, which records the date and time in UNIX format until which the strategy will be stopped, for example the following value: PreventWorkingUntil=1668718421. If PreventWorkingUntil=0, the strategy is not stopped and is running normally. Usually this parameter is changed in the strategy

What is the purpose of the PreventWorkingUntil parameter on the Filters tab of the MoonBot terminal strategy settings? Read More »

I want a strategy in the MoonBot terminal to work only within a certain range of profits per session, are there any such settings?

Yes, for this purpose use the parameters on the Filters tab of the strategy settings SessionProfitMin and SessionProfitMax – these are two parameters that allow the strategy to work within the specified range of profit per session from SessionProfitMin and up to SessionProfitMax (values are specified in $ on any trading pairs). If 0, the

I want a strategy in the MoonBot terminal to work only within a certain range of profits per session, are there any such settings? Read More »

I want to stop the strategy if the total minus exceeds my threshold, how can I adjust this?

This can be done by using the TotalLoss option on the Filters tab of the strategy settings, in which you should write a positive total loss number and the strategy will stop working when the total minus exceeds this value. The minus is counted by the total settings from the AutoStart tab for the set

I want to stop the strategy if the total minus exceeds my threshold, how can I adjust this? Read More »

I want the strategy to take a position no higher than a certain value that I can allocate to a single coin, how can I implement this?

Use the parameter on the Filters tab of the MaxPosition strategy settings, in which field set the position threshold, above which all Buy orders will be cancelled (with CheckAfterBuy enabled), and new ones will not be placed.

I want the strategy to take a position no higher than a certain value that I can allocate to a single coin, how can I implement this? Read More »