MonoBot API

All MonoBot endpoints are called via HTTP POST and receive two parameters: connKey and scope.

This documentation was generated using Postman, find the exported collection here.

Parameters

1. connKey

  • Required. It identifies the user and the strategy. The connection key is a combination of the user's email and the strategy's key, joined by a comma. You can copy the connKey by clicking on the key icon next to the strategy name in My strategies page.

2. scope

  • Optional. It defines the scope of the action taking place. The possible values for scope are:
    • Strategy: (Default value) The action applies only to this strategy.
    • Linked: The action applies only to the linked strategies of this strategy.
    • Subscribed: The action applies to the subscribed users.
    • Global: All positions in the same broker account, even in different pairs. The Global scope is used only for position-related actions like closing, locking, and unlocking positions.

JavaScript Example

Here is a JavaScript example showing how to call a MonoBot action:

async function pauseStrg() {
    var url = 'https://monobot.pro/pauseStrg.act';
    var data = {
        connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
        scope: 'Strategy'
    };
    var reqOpts = {};
    reqOpts.method = 'POST';
    reqOpts.body = JSON.stringify(data);
    reqOpts.mode = "cors";
    reqOpts.cache = "no-cache";
    reqOpts.redirect = "follow";
    reqOpts.referrerPolicy = "no-referrer";
    
    const response = await fetch(url, reqOpts);
    var result = await response.text();
    console.log('result', result);
    window.alert('result:\n' + result);
}

Note: check your adblocker in case the request is being blocked by the browser.

POST Check listener
http://localhost:5000/predict

MonoBot can call an external system to ask for a prediction. It will do a POST request to the strategy’s listener (a web server you set up) and then it will place the order according to the response (buy order for a BUY response, sell order for a SELL response) or do nothing in case the response is not BUY or SELL.

To configure your server's URL, go to the configuration of your strategy (gear icon), then Tools and then click the wrench icon of Listener.

BODY urlencoded

datetime
2023.10.06 17:30:00

MetaTrader's market date and time.

strgName
Hammer

MonoBot strategy's name.

isTesting
true

true: when doing regression testing in MetaTrader's simulator. false: when doing live trading.

Example Request
                                                
POST http://localhost:5000/predict
                                            
POST Pause strategy
https://monobot.pro/pauseStrg.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/pauseStrg.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unpause strategy
https://monobot.pro/unpauseStrg.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unpauseStrg.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Pause buys
https://monobot.pro/pauseBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/pauseBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unpause buys
https://monobot.pro/unpauseBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unpauseBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Pause sells
https://monobot.pro/pauseSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/pauseSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unpause sells
https://monobot.pro/unpauseSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unpauseSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Work now
https://monobot.pro/workNow.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/workNow.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Work normal
https://monobot.pro/workNormal.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/workNormal.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Act on intention
https://monobot.pro/actOnIntention.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/actOnIntention.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Stop strategy
https://monobot.pro/stopStrg.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/stopStrg.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Continue strategy
https://monobot.pro/continueStrg.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/continueStrg.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Place buy
https://monobot.pro/placeBuy.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/placeBuy.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Place sell
https://monobot.pro/placeSell.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/placeSell.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Close all losing
https://monobot.pro/closeAllLosing.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/closeAllLosing.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Close all winning
https://monobot.pro/closeAllWinning.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/closeAllWinning.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Close all losing buys
https://monobot.pro/closeLosingBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/closeLosingBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Close all winning buys
https://monobot.pro/closeWinningBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/closeWinningBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Close all losing sells
https://monobot.pro/closeLosingSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/closeLosingSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Close all winning sells Copy
https://monobot.pro/closeWinningSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/closeWinningSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Lock all losing
https://monobot.pro/lockAllLosing.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/lockAllLosing.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Lock all winning
https://monobot.pro/lockAllWinning.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/lockAllWinning.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Lock losing buys
https://monobot.pro/lockLosingBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/lockLosingBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Lock winning buys
https://monobot.pro/lockWinningBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/lockWinningBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Lock winning sells
https://monobot.pro/lockWinningSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/lockWinningSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Lock losing sells
https://monobot.pro/lockLosingSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/lockLosingSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unlock all losing
https://monobot.pro/unlockAllLosing.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unlockAllLosing.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unlock all winning
https://monobot.pro/unlockAllWinning.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unlockAllWinning.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unlock losing buys
https://monobot.pro/unlockLosingBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unlockLosingBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unlock winning buys
https://monobot.pro/unlockWinningBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unlockWinningBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unlock losing sells
https://monobot.pro/unlockLosingSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unlockLosingSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Unlock winning sells
https://monobot.pro/unlockWinningSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/unlockWinningSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start OC all losing
https://monobot.pro/startOCAllLosing.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startOCAllLosing.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start OC all winning
https://monobot.pro/startOCAllWinning.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startOCAllWinning.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start OC losing buys
https://monobot.pro/startOCLosingBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startOCLosingBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start OC winning buys
https://monobot.pro/startOCWinningBuys.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startOCWinningBuys.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start OC losing sells
https://monobot.pro/startOCLosingSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startOCLosingSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start OC winning sells
https://monobot.pro/startOCWinningSells.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startOCWinningSells.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                            
POST Start money close
https://monobot.pro/startMoneyClose.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy',
moneyClose1: 300,
moneyClose2: 150
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/startMoneyClose.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy',
moneyClose1: 300,
moneyClose2: 150
}
                                            
POST Stop money close
https://monobot.pro/stopMoneyClose.act
BODY raw

                                                  
                                                    
{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}
                                                  
                                              
Example Request
                                                
POST https://monobot.pro/stopMoneyClose.act

{
connKey: 'your@email.com,0123456789ABCDEFGHIJKLMNOPQRSTUV',
scope: 'Strategy'
}