Skip to main content

No project description provided

Project description

easy_kite_methods

The easy_kite_methods package provides a seamless interface for interacting with the Kite Connect API for stock trading on the Zerodha platform.
Kite Connect Python Client - https://kite.trade/docs/pykiteconnect/v4/ .
Kite HTTP API Documentation - https://kite.trade/docs/connect/v3/.

Installation

To install the easy_kite_methods package, run the following command:

pip install easy_kite_methods

Configuration

Before using the easy_kite_methods package, you must configure your environment with necessary API keys and secrets. Follow these steps to set up your environment:

  1. Environment Variables: Store your Kite Connect API key and secret in a .env file at the root of your project. This file should contain:

    KITE_API_KEY=your_api_key_here
    KITE_API_SECRET=your_api_secret_here
    

Usage

Import the package using the alias ekm and utilize its functions for interacting with the Zerodha Kite Connect API.

Example Imports

import easy_kite_methods as ekm

Placing Orders

  • Buy an Intraday Normal Order:

    order_id = ekm.buy_intraday_normal_order(stock_name="RELIANCE", quantity=1)
    
  • Sell an Intraday Normal Order:

    order_id = ekm.sell_intraday_normal_order(stock_name="TCS", quantity=2)
    
  • Buy an Intraday Limit Order:

    order_id = ekm.buy_intraday_limit_order(stock_name="RELIANCE", quantity=1,price=2900)
    
  • Sell an Intraday Limit Order:

    order_id = ekm.sell_intraday_limit_order(stock_name="TCS", quantity=2,price=2300)
    
  • Place Stop Loss Market Order:

    order_id = ekm.place_slm_order(stock_name="INFY", quantity=10, order_type="BUY", price=1500)
    

Modifying Orders

  • Varieties can be [REGULAR,BO,CO,AMO]r:

    ekm.modify_order(variety="REGULAR", orderId="your_order_id_here", quantity=2, price=3550)
    
    ekm.modify_order_quantity(variety="REGULAR", order_id="order123", quantity=15)
    
    ekm.modify_order_price(variety="AMO", order_id="order123", price=1520)
    
    ekm.modify_order_to_buy(variety="CO", order_id="order123")
    
    ekm.modify_order_to_sell(variety="BO", order_id="order123")
    

Fetching Account Details

  • Fetch Holdings:

    holdings = ekm.get_holdings()
    
  • Fetch Positions:

    positions = ekm.get_positions()
    
  • Cancel or Exit Orders:

    ekm.cancel_order(order_id="order123")
    
    ekm.exit_orders(order_id="order123")
    

Additional Useful APIS

  • **Get Status and Average Price [COMPLETED,REJECTED] as an example **:

    order_status = ekm.get_status(order_id="order123")
    
    average_price,status = ekm.get_average_price_and_status(order_id="order123")
    
    order_history = ekm.get_order_history(order_id="order123")
    

Fetching Live Data

  • Get Stock Price:

    stock_price = ekm.get_stock_price(name="RELIANCE")
    
  • Get Stock Instrument Token:

    token = ekm.get_stock_instrument_token(stock_name="RELIANCE")
    
  • Get FNO Instrument Price:

    stock_price = ekm.get_fno_price(name="BANKNIFTY24APRFUT")
    
  • Get FNO Instrument Token:

    token = ekm.get_fno_instrument_token(stock_name="BANKNIFTY24APRFUT")
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easy_kite_methods-0.0.6.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

easy_kite_methods-0.0.6-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file easy_kite_methods-0.0.6.tar.gz.

File metadata

  • Download URL: easy_kite_methods-0.0.6.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.2.0

File hashes

Hashes for easy_kite_methods-0.0.6.tar.gz
Algorithm Hash digest
SHA256 d70baea421fd575c65c08c15db46edd5d0c0ccb624df03018ae0c42bc1d2cff1
MD5 5780710d4efb7f8f5b43dcd474287a14
BLAKE2b-256 d40544618cb4a5d1d1cf3e3eae08a8afc93039b416eff58a5402f1e70d2db213

See more details on using hashes here.

File details

Details for the file easy_kite_methods-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: easy_kite_methods-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.2.0

File hashes

Hashes for easy_kite_methods-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 5367e80bca280ef3a569865baf0eba75c0e1df27ae5211a5f33d4790bdf81906
MD5 446c84cd80dacc12865c674e6ba11cc7
BLAKE2b-256 5fffec4167108a4a9e7736b2bccf09834d1b185c2624b50b153dadf4880de5e8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page