It looks like you're new here. If you want to get involved, click one of these buttons!
Dictionary<string, dynamic> response = kite.PlaceOrder(
Exchange: "NSE",
TradingSymbol: "AXISBANK",
TransactionType: Constants.TRANSACTION_TYPE_BUY,
Quantity: 1,
Price: 752.0M,
OrderType: Constants.ORDER_TYPE_LIMIT,
Validity: Constants.VALIDITY_DAY,
Product: Constants.PRODUCT_MIS
);
order_id = response["data"]["order_id"];
You can enable debug logs, as below:
Kite kite = new Kite(MyAPIKey, Debug: true);