Skip to content

Latest commit

 

History

History
84 lines (64 loc) · 4.49 KB

Place_Order.md

File metadata and controls

84 lines (64 loc) · 4.49 KB

Place_Order

Place a New order

client.place_order(exchange_segment="", product="", price="", order_type="", quantity="", validity="", trading_symbol="",
                   transaction_type="", amo="", disclosed_quantity="", market_protection="", pf="", trigger_price="",
                   tag=)

Example

from neo_api_client import NeoAPI
        
#First initialize session and generate session token

client = NeoAPI(consumer_key=" ",consumer_secret=" ",environment=" ")
client.login(mobilenumber=" ", password=" ")
client.session_2fa(" ")

try:
    # Place a Order
    client.place_order(exchange_segment="", product="", price="", order_type="", quantity="", validity="", trading_symbol="",
                       transaction_type="", amo="NO", disclosed_quantity="0", market_protection="0", pf="N",
                       trigger_price="0", tag=None)
except Exception as e:
    print("Exception when calling OrderApi->place_order: %s\n" % e)

Parameters

Name Description Type
amo YES/NO - (Default Value - NO) Str [optional]
disclosed_quantity (Default Value - 0) Str [optional]
exchange_segment nse_cm - NSE
bse_cm - BSE
nse_fo - NFO
bse_fo - BFO
cde_fo - CDS
mcx_fo - MCX
Str
market_protection (Default Value - 0) Str [optional]
product NRML - Normal
CNC - Cash and Carry
MIS - MIS
CO - Cover Order
Str
pf Default Value - “N” Str [optional]
price price of the order Str [optional]
order_type L - Limit
MKT - Market
SL - Stop loss limit
SL-M - Stop loss market
Str
quantity quantity of the order Str
validity Validity of the order - DAY, IOC, GTC, EOS Str
trigger_price Optional, required for stop loss and cover order Str [optional]
trading_symbol pTrdSymbol in ScripMaster file Str
transaction_type B(Buy), S(Sell) Str
tag Tag for this order Str [optional]

Return type

object

Sample response

{
    "stat": "Ok",
    "nOrdNo": "237362700735243",
    "stCode": 200
}

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status Code Description
200 Order placed successfully
400 Invalid or missing input parameters
403 Invalid session, please re-login to continue
429 Too many requests to the API
500 Unexpected error
502 Not able to communicate with OMS
503 Trade API service is unavailable
504 Gateway timeout, trade API is unreachable

[Back to top] [Back to API list] [Back to README]