Create a Limit Order

A limit order is used for locking in profit of the existing position when the market condition is met.

Limit orders can be created for existing trades as well as for existing entry orders. Limit orders created for entry orders remain inactive until the trade is created by the entry order.

Only one limit order can be attached to a position or an entry order.

Please note that close orders must be permitted for the account in order to be used.

Please note that stop and limit orders cannot be attached to netting entry orders.

Parameter name

Datatype

Description

Command

string

The command. Must be CreateOrder.

OrderType

string

The type of the order. Must be L.

OfferID

string

The identifier of the instrument the order should be placed for. The value must be obtained from the Offers table, the OfferID column.

AccountID

string

The identifier of the account the order should be placed for. The value must be obtained from the Accounts table, the AccountID column.

Please note that the account identifier may not necessarily be equal to the account name which is shown in the Trading Station application.

TradeID

string

The identifier of the trade to be closed. The value must be obtained from the Trades table, the TradeID column.

BuySell

string

The order direction.

The value must be B - for buy orders and S - for sell orders. The order direction must be opposite to the direction of the order which was used to create the position (see the BuySell column of the trade).

Amount

int

The amount of the order. In the case of FX instruments, the amount is expressed in the base currency of an instrument. In the case of CFD instruments, the amount is expressed in contracts. Must be divisible by the value of the lot size.

The amount must be equal to the size of the position (see the Amount column of the trade).

Rate

double

The rate at which the order must be filled.

The rate must be above the market for sell orders and below the market for buy orders.

To specify the limit order price, use:

  • Rate - if the limit order is created for the existing position.

  • Either Rate or a pair of PegType and PegOffset fields - if the limit order is created for an entry order.

PegType

string

"Pegged" means that the price is specified as an offset (in pips) against the market price.

The field specifies which price should be used to calculate the order price:

O

The open price of the related trade.

M

The close price (the current market price) of the related trade.

Please note that "pegged" orders are stored as "pegged" only while the order is attached to an entry order. Once the entry order gets filled and a position is opened, the peg price is automatically converted to a regular market price.

PegOffset

int

The offset to the price specified in the PegType field. The offset must be expressed in pips.

The offset must be negative for buy orders and positive for sell orders.

TimeInForce

string

The Time In Force value.

Can be GTC (Good Till Cancelled) or DAY (Day Order).

The value is optional.

Limit orders are GTC orders by default.

ClientRate

double

The current price of the order instrument.

The value is optional. It is used for logging purposes.

CustomID

string

The custom identifier of the order. This value will be populated into these columns of the trading tables:

Table

Column

Orders

RequestTXT

Closed Trades

CloseOrderRequestTXT

The value is optional.

Example: Create a Limit order [hide]

   public void PrepareParamsFromLoginRules(O2GLoginRules loginRules)
   {
       mParams = new OrderCreationParameters();
 
       O2GResponseReaderFactory factory = mSession.getResponseReaderFactory();
       if (factory == null)
           return;
       // Gets first account from login.
       O2GResponse accountsResponse = loginRules.getTableRefreshResponse(O2GTable.Accounts);
       O2GAccountsTableResponseReader accountsReader = factory.createAccountsTableReader(accountsResponse);
       O2GAccountRow account = accountsReader.getRow(0);
       // Store account id
       mParams.AccountID = account.AccountID;
       // Store base iAmount
          mParams.BaseAmount = account.BaseUnitSize;
       // Get offers for eur/usd
       O2GResponse offerResponse = loginRules.getTableRefreshResponse(O2GTable.Offers);
       O2GOffersTableResponseReader offersReader = factory.createOffersTableReader(offerResponse);
       for (int i = 0; i < offersReader.Count; i++)
       {
           O2GOfferRow offer = offersReader.getRow(i);
           if (string.Compare(offer.Instrument, "EUR/USD", true) == 0)
           {
               mParams.OfferID = offer.OfferID;
               mParams.Ask = offer.Ask;
               mParams.Bid = offer.Bid;
               mParams.PointSize = offer.PointSize;
               break;
           }
       }
 
   }
 
   public void PrepareParamsAndCallLimitOrder(O2GTradeRow tradeRow, int iAtMarket)
   {
       string sTradeBuySell = tradeRow.BuySell;
       // Close order is opposite to the trade
       bool bBuyOrder = false;
       if (sTradeBuySell == Constants.Sell)
           bBuyOrder = true;
 
       string sTradeOfferID = tradeRow.OfferID;
       double dCurrentRate = 0;
       double dLimitRate = 0;
       double dPointSize = mParams.PointSize;
       if (bBuyOrder)
       {
           dCurrentRate = mParams.Ask;
           dLimitRate = dCurrentRate - iAtMarket * dPointSize;
       }
       else
       {
           dCurrentRate = mParams.Bid;
           dLimitRate = dCurrentRate + iAtMarket * dPointSize;
       }
 
       CreateLimitOrder(sTradeOfferID,
                        tradeRow.AccountID,
                        tradeRow.TradeID,
                        tradeRow.Amount,
                        dLimitRate, bBuyOrder ? Constants.Buy : Constants.Sell);
   }
 
   public void CreateLimitOrder(string sOfferID, string sAccountID, string sTradeID, int iAmount, double dRate, string sBuySell)
   {
 
       O2GRequestFactory factory = mSession.getRequestFactory();
       if (factory == null)
           return;
       O2GValueMap valuemap = factory.createValueMap();
 
       valuemap.setString(O2GRequestParamsEnum.Command, Constants.Commands.CreateOrder);
       valuemap.setString(O2GRequestParamsEnum.OrderType, Constants.Orders.Limit);
       valuemap.setString(O2GRequestParamsEnum.AccountID, sAccountID);
       valuemap.setString(O2GRequestParamsEnum.OfferID, sOfferID);            // The identifier of the instrument the order should be placed for
       valuemap.setString(O2GRequestParamsEnum.TradeID, sTradeID);            // The identifier of the trade to be closed
       valuemap.setString(O2GRequestParamsEnum.BuySell, sBuySell);            // The order direction(Constants.Buy for Buy, Constants.Sell for Sell). Must be opposite to the direction of the trade
       valuemap.setInt(O2GRequestParamsEnum.Amount, iAmount);                 // The quantity of the instrument to be bought or sold. Must == the size of the position (Lot of the trade).
       valuemap.setDouble(O2GRequestParamsEnum.Rate, dRate);                  // The dRate at which the order must be filled ( market for Sell, < market for Buy)
       valuemap.setString(O2GRequestParamsEnum.CustomID, "LimitOrder");      // The custom identifier of the order
       O2GRequest request = factory.createOrderRequest(valuemap);
       mSession.sendRequest(request);
   }

back