├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── .gitkeep ├── api.md ├── index.md └── reference │ ├── algos │ └── trailing.md │ ├── base.md │ ├── brokers │ ├── api_helper.md │ ├── finvasia.md │ ├── icici.md │ ├── neo.md │ ├── noren.md │ ├── paper.md │ └── zerodha.md │ ├── models.md │ ├── multi.md │ ├── omspy.md │ ├── order.md │ ├── orders │ ├── depth.md │ ├── peg.md │ └── stop.md │ ├── simulation │ ├── models.md │ ├── server.md │ └── virtual.md │ └── utils.md ├── mkdocs.yml ├── omspy ├── NorenRestApi-0.0.30-py2.py3-none-any.whl ├── __init__.py ├── algos │ ├── README.md │ ├── __init__.py │ ├── straddle.py │ └── trailing.py ├── base.py ├── brokers │ ├── __init__.py │ ├── api_helper.py │ ├── finvasia.py │ ├── finvasia.yaml │ ├── icici.py │ ├── icici.yaml │ ├── neo.py │ ├── neo.yaml │ ├── noren.py │ ├── noren.yaml │ ├── paper.py │ ├── paper.yaml │ ├── zerodha.py │ └── zerodha.yaml ├── models.py ├── multi.py ├── order.py ├── orders │ ├── __init__.py │ ├── depth.py │ ├── peg.py │ └── stop.py ├── simulation │ ├── __init__.py │ ├── models.py │ ├── server.py │ └── virtual.py └── utils.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── algos ├── test_straddle.py └── test_trailing.py ├── brokers ├── __init__.py ├── test_finvasia.py ├── test_icici.py ├── test_neo.py ├── test_noren.py ├── test_paper.py └── test_zerodha.py ├── data ├── credentials.yaml ├── finvasia │ ├── orders.json │ ├── positions.json │ └── trades.json ├── fyers.json ├── icici.json ├── kiteconnect │ ├── README.md │ ├── basket_margins.json │ ├── convert_position.json │ ├── generate_session.json │ ├── gtt_delete_order.json │ ├── gtt_get_order.json │ ├── gtt_get_orders.json │ ├── gtt_modify_order.json │ ├── gtt_place_order.json │ ├── historical_minute.json │ ├── historical_oi.json │ ├── holdings.json │ ├── holdings_auth.json │ ├── instruments_all.csv │ ├── instruments_nse.csv │ ├── ltp.json │ ├── margin_commodity.json │ ├── margins.json │ ├── margins_equity.json │ ├── mf_holdings.json │ ├── mf_instruments.csv │ ├── mf_order_response.json │ ├── mf_orders.json │ ├── mf_orders_info.json │ ├── mf_sip_info.json │ ├── mf_sips.json │ ├── ohlc.json │ ├── order_cancel.json │ ├── order_info.json │ ├── order_margins.json │ ├── order_response.json │ ├── order_trades.json │ ├── orders.json │ ├── positions.json │ ├── profile.json │ ├── quote.json │ ├── ticker_full.packet │ ├── ticker_quote.packet │ ├── trades.json │ └── trigger_range.json ├── kotak_cash.csv ├── kotak_cash_named.csv ├── kotak_fno.csv ├── kotak_fno_named.csv ├── kotak_master.json ├── kotak_neo.json ├── kotak_orders.json ├── kotak_orders2.json ├── kotak_positions.json ├── nifty_candles_2min.csv ├── nifty_ticks.csv ├── real_orders.csv └── zerodha.yaml ├── orders ├── test_depth.py ├── test_peg.py └── test_stop.py ├── simulation ├── __init__.py ├── test_models.py ├── test_server.py └── test_virtual.py ├── test_base.py ├── test_models.py ├── test_models_candles.py ├── test_models_tracker.py ├── test_multi.py ├── test_omspy.py ├── test_order.py ├── test_order_strategy.py └── test_utils.py /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/docs/.gitkeep -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- 1 | # API Reference 2 | 3 | ::: omspy.order 4 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference/algos/trailing.md: -------------------------------------------------------------------------------- 1 | ::: omspy.algos.trailing 2 | -------------------------------------------------------------------------------- /docs/reference/base.md: -------------------------------------------------------------------------------- 1 | ::: omspy.base 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/api_helper.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.api_helper 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/finvasia.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.finvasia 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/icici.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.icici 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/neo.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.neo 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/noren.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.noren 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/paper.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.paper 2 | -------------------------------------------------------------------------------- /docs/reference/brokers/zerodha.md: -------------------------------------------------------------------------------- 1 | ::: omspy.brokers.zerodha 2 | -------------------------------------------------------------------------------- /docs/reference/models.md: -------------------------------------------------------------------------------- 1 | ::: omspy.models 2 | -------------------------------------------------------------------------------- /docs/reference/multi.md: -------------------------------------------------------------------------------- 1 | ::: omspy.multi 2 | -------------------------------------------------------------------------------- /docs/reference/omspy.md: -------------------------------------------------------------------------------- 1 | ::: omspy 2 | -------------------------------------------------------------------------------- /docs/reference/order.md: -------------------------------------------------------------------------------- 1 | ::: omspy.order 2 | -------------------------------------------------------------------------------- /docs/reference/orders/depth.md: -------------------------------------------------------------------------------- 1 | ::: omspy.orders.depth 2 | -------------------------------------------------------------------------------- /docs/reference/orders/peg.md: -------------------------------------------------------------------------------- 1 | ::: omspy.orders.peg 2 | -------------------------------------------------------------------------------- /docs/reference/orders/stop.md: -------------------------------------------------------------------------------- 1 | ::: omspy.orders.stop 2 | -------------------------------------------------------------------------------- /docs/reference/simulation/models.md: -------------------------------------------------------------------------------- 1 | ::: omspy.simulation.models 2 | -------------------------------------------------------------------------------- /docs/reference/simulation/server.md: -------------------------------------------------------------------------------- 1 | ::: omspy.simulation.server 2 | -------------------------------------------------------------------------------- /docs/reference/simulation/virtual.md: -------------------------------------------------------------------------------- 1 | ::: omspy.simulation.virtual 2 | -------------------------------------------------------------------------------- /docs/reference/utils.md: -------------------------------------------------------------------------------- 1 | ::: omspy.utils 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /omspy/NorenRestApi-0.0.30-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/NorenRestApi-0.0.30-py2.py3-none-any.whl -------------------------------------------------------------------------------- /omspy/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /omspy/algos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/algos/README.md -------------------------------------------------------------------------------- /omspy/algos/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes 'algos' a package. 2 | -------------------------------------------------------------------------------- /omspy/algos/straddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/algos/straddle.py -------------------------------------------------------------------------------- /omspy/algos/trailing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/algos/trailing.py -------------------------------------------------------------------------------- /omspy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/base.py -------------------------------------------------------------------------------- /omspy/brokers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes 'brokers' a package. 2 | -------------------------------------------------------------------------------- /omspy/brokers/api_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/api_helper.py -------------------------------------------------------------------------------- /omspy/brokers/finvasia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/finvasia.py -------------------------------------------------------------------------------- /omspy/brokers/finvasia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/finvasia.yaml -------------------------------------------------------------------------------- /omspy/brokers/icici.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/icici.py -------------------------------------------------------------------------------- /omspy/brokers/icici.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/icici.yaml -------------------------------------------------------------------------------- /omspy/brokers/neo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/neo.py -------------------------------------------------------------------------------- /omspy/brokers/neo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/neo.yaml -------------------------------------------------------------------------------- /omspy/brokers/noren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/noren.py -------------------------------------------------------------------------------- /omspy/brokers/noren.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/noren.yaml -------------------------------------------------------------------------------- /omspy/brokers/paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/paper.py -------------------------------------------------------------------------------- /omspy/brokers/paper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/paper.yaml -------------------------------------------------------------------------------- /omspy/brokers/zerodha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/zerodha.py -------------------------------------------------------------------------------- /omspy/brokers/zerodha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/brokers/zerodha.yaml -------------------------------------------------------------------------------- /omspy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/models.py -------------------------------------------------------------------------------- /omspy/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/multi.py -------------------------------------------------------------------------------- /omspy/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/order.py -------------------------------------------------------------------------------- /omspy/orders/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes 'orders' a package. 2 | -------------------------------------------------------------------------------- /omspy/orders/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/orders/depth.py -------------------------------------------------------------------------------- /omspy/orders/peg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/orders/peg.py -------------------------------------------------------------------------------- /omspy/orders/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/orders/stop.py -------------------------------------------------------------------------------- /omspy/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes 'simulation' a package. 2 | -------------------------------------------------------------------------------- /omspy/simulation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/simulation/models.py -------------------------------------------------------------------------------- /omspy/simulation/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/simulation/server.py -------------------------------------------------------------------------------- /omspy/simulation/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/simulation/virtual.py -------------------------------------------------------------------------------- /omspy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/omspy/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/algos/test_straddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/algos/test_straddle.py -------------------------------------------------------------------------------- /tests/algos/test_trailing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/algos/test_trailing.py -------------------------------------------------------------------------------- /tests/brokers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/brokers/test_finvasia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/brokers/test_finvasia.py -------------------------------------------------------------------------------- /tests/brokers/test_icici.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/brokers/test_icici.py -------------------------------------------------------------------------------- /tests/brokers/test_neo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/brokers/test_neo.py -------------------------------------------------------------------------------- /tests/brokers/test_noren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/brokers/test_noren.py -------------------------------------------------------------------------------- /tests/brokers/test_paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/brokers/test_paper.py -------------------------------------------------------------------------------- /tests/brokers/test_zerodha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/brokers/test_zerodha.py -------------------------------------------------------------------------------- /tests/data/credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/credentials.yaml -------------------------------------------------------------------------------- /tests/data/finvasia/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/finvasia/orders.json -------------------------------------------------------------------------------- /tests/data/finvasia/positions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/finvasia/positions.json -------------------------------------------------------------------------------- /tests/data/finvasia/trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/finvasia/trades.json -------------------------------------------------------------------------------- /tests/data/fyers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/fyers.json -------------------------------------------------------------------------------- /tests/data/icici.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/icici.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/README.md -------------------------------------------------------------------------------- /tests/data/kiteconnect/basket_margins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/basket_margins.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/convert_position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/convert_position.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/generate_session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/generate_session.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/gtt_delete_order.json: -------------------------------------------------------------------------------- 1 | {"status":"success","data":{"trigger_id":123}} 2 | -------------------------------------------------------------------------------- /tests/data/kiteconnect/gtt_get_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/gtt_get_order.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/gtt_get_orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/gtt_get_orders.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/gtt_modify_order.json: -------------------------------------------------------------------------------- 1 | {"status":"success","data":{"trigger_id":123}} 2 | -------------------------------------------------------------------------------- /tests/data/kiteconnect/gtt_place_order.json: -------------------------------------------------------------------------------- 1 | {"status":"success","data":{"trigger_id":123}} 2 | -------------------------------------------------------------------------------- /tests/data/kiteconnect/historical_minute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/historical_minute.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/historical_oi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/historical_oi.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/holdings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/holdings.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/holdings_auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/holdings_auth.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/instruments_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/instruments_all.csv -------------------------------------------------------------------------------- /tests/data/kiteconnect/instruments_nse.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/instruments_nse.csv -------------------------------------------------------------------------------- /tests/data/kiteconnect/ltp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/ltp.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/margin_commodity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/margin_commodity.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/margins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/margins.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/margins_equity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/margins_equity.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_holdings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_holdings.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_instruments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_instruments.csv -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_order_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_order_response.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_orders.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_orders_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_orders_info.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_sip_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_sip_info.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/mf_sips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/mf_sips.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/ohlc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/ohlc.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/order_cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/order_cancel.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/order_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/order_info.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/order_margins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/order_margins.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/order_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/order_response.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/order_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/order_trades.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/orders.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/positions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/positions.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/profile.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/quote.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/ticker_full.packet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/ticker_full.packet -------------------------------------------------------------------------------- /tests/data/kiteconnect/ticker_quote.packet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/ticker_quote.packet -------------------------------------------------------------------------------- /tests/data/kiteconnect/trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/trades.json -------------------------------------------------------------------------------- /tests/data/kiteconnect/trigger_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kiteconnect/trigger_range.json -------------------------------------------------------------------------------- /tests/data/kotak_cash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_cash.csv -------------------------------------------------------------------------------- /tests/data/kotak_cash_named.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_cash_named.csv -------------------------------------------------------------------------------- /tests/data/kotak_fno.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_fno.csv -------------------------------------------------------------------------------- /tests/data/kotak_fno_named.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_fno_named.csv -------------------------------------------------------------------------------- /tests/data/kotak_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_master.json -------------------------------------------------------------------------------- /tests/data/kotak_neo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_neo.json -------------------------------------------------------------------------------- /tests/data/kotak_orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_orders.json -------------------------------------------------------------------------------- /tests/data/kotak_orders2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_orders2.json -------------------------------------------------------------------------------- /tests/data/kotak_positions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/kotak_positions.json -------------------------------------------------------------------------------- /tests/data/nifty_candles_2min.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/nifty_candles_2min.csv -------------------------------------------------------------------------------- /tests/data/nifty_ticks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/nifty_ticks.csv -------------------------------------------------------------------------------- /tests/data/real_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/real_orders.csv -------------------------------------------------------------------------------- /tests/data/zerodha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/data/zerodha.yaml -------------------------------------------------------------------------------- /tests/orders/test_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/orders/test_depth.py -------------------------------------------------------------------------------- /tests/orders/test_peg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/orders/test_peg.py -------------------------------------------------------------------------------- /tests/orders/test_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/orders/test_stop.py -------------------------------------------------------------------------------- /tests/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/simulation/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/simulation/test_models.py -------------------------------------------------------------------------------- /tests/simulation/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/simulation/test_server.py -------------------------------------------------------------------------------- /tests/simulation/test_virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/simulation/test_virtual.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_models_candles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_models_candles.py -------------------------------------------------------------------------------- /tests/test_models_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_models_tracker.py -------------------------------------------------------------------------------- /tests/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_multi.py -------------------------------------------------------------------------------- /tests/test_omspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_omspy.py -------------------------------------------------------------------------------- /tests/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_order.py -------------------------------------------------------------------------------- /tests/test_order_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_order_strategy.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/omspy/HEAD/tests/test_utils.py --------------------------------------------------------------------------------