├── .claude └── settings.local.json ├── .dockerignore ├── .ebextensions └── 01_flask.config ├── .gitignore ├── .sample.env ├── CONTRIBUTING.md ├── Dockerfile ├── INSTALL.md ├── License.md ├── README.md ├── SECURITY.md ├── __init__.py ├── app.py ├── blueprints ├── __init__.py ├── analyzer.py ├── apikey.py ├── auth.py ├── brlogin.py ├── chartink.py ├── core.py ├── dashboard.py ├── gc_json.py ├── latency.py ├── log.py ├── master_contract_status.py ├── orders.py ├── platforms.py ├── playground.py ├── pnltracker.py ├── python_strategy.py ├── sandbox.py ├── search.py ├── security.py ├── settings.py ├── strategy.py ├── telegram.py ├── traffic.py ├── tv_json.py └── websocket_example.py ├── broker ├── __init__.py ├── aliceblue │ ├── api │ │ ├── __init__.py │ │ ├── alicebluewebsocket.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── aliceblue_adapter.py │ │ ├── aliceblue_client.py │ │ └── aliceblue_mapping.py ├── angel │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── angel_adapter.py │ │ ├── angel_mapping.py │ │ └── smartWebSocketV2.py ├── compositedge │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── baseurl.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── compositedge_adapter.py │ │ ├── compositedge_mapping.py │ │ └── compositedge_websocket.py ├── definedge │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ ├── __init__.py │ │ └── master_contract_db.py │ ├── mapping │ │ ├── __init__.py │ │ ├── margin_data.py │ │ ├── order_data.py │ │ ├── symbol_map.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── definedge_adapter.py │ │ ├── definedge_mapping.py │ │ └── definedge_websocket.py ├── dhan │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── baseurl.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── dhan_adapter.py │ │ ├── dhan_mapping.py │ │ └── dhan_websocket.py ├── dhan_sandbox │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── baseurl.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── dhan_adapter.py │ │ ├── dhan_mapping.py │ │ └── dhan_websocket.py ├── firstock │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── firstock_adapter.py │ │ ├── firstock_mapping.py │ │ └── firstock_websocket.py ├── fivepaisa │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── fivepaisa_adapter.py │ │ ├── fivepaisa_mapping.py │ │ └── fivepaisa_websocket.py ├── fivepaisaxts │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── baseurl.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── fivepaisaxts_adapter.py │ │ ├── fivepaisaxts_mapping.py │ │ └── fivepaisaxts_websocket.py ├── flattrade │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── docs │ │ └── reconnection_fix.md │ │ ├── flattrade_adapter.py │ │ ├── flattrade_mapping.py │ │ └── flattrade_websocket.py ├── fyers │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── fyers_adapter.py │ │ ├── fyers_hsm_websocket.py │ │ ├── fyers_mapping.py │ │ ├── fyers_tbt_websocket.py │ │ ├── fyers_token_converter.py │ │ ├── fyers_websocket_adapter.py │ │ └── msg_pb2.py ├── groww │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── groww_adapter.py │ │ ├── groww_mapping.py │ │ ├── groww_nats.py │ │ ├── groww_nkeys.py │ │ ├── groww_protobuf.py │ │ └── nats_websocket.py ├── ibulls │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── baseurl.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── ibulls_adapter.py │ │ ├── ibulls_mapping.py │ │ └── ibulls_websocket.py ├── iifl │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── baseurl.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── iifl_adapter.py │ │ ├── iifl_mapping.py │ │ └── iifl_websocket.py ├── indmoney │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── baseurl.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── indWebSocket.py │ │ ├── indmoney_adapter.py │ │ └── indmoney_mapping.py ├── jainamxts │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── baseurl.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── jainamxts_adapter.py │ │ ├── jainamxts_mapping.py │ │ └── jainamxts_websocket.py ├── kotak │ ├── __init__.py │ ├── api │ │ ├── HSWebSocketLib.py │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── HSWebSocketLib.py │ │ ├── __init__.py │ │ ├── kotak_adapter.py │ │ ├── kotak_mapping.py │ │ └── kotak_websocket.py ├── motilal │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ ├── motilal_websocket.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── motilal_adapter.py │ │ └── motilal_mapping.py ├── mstock │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ ├── mstockwebsocket.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ ├── remainwork.md │ └── streaming │ │ ├── __init__.py │ │ ├── mstock_adapter.py │ │ └── mstock_mapping.py ├── paytm │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── paytm_adapter.py │ │ ├── paytm_mapping.py │ │ └── paytm_websocket.py ├── pocketful │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ ├── order_api.py │ │ ├── packet_decoder.py │ │ └── pocketfulwebsocket.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ └── plugin.json ├── samco │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ ├── __init__.py │ │ └── master_contract_db.py │ ├── mapping │ │ ├── __init__.py │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ └── streaming │ │ ├── __init__.py │ │ ├── samcoWebSocket.py │ │ ├── samco_adapter.py │ │ └── samco_mapping.py ├── shoonya │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── shoonya_adapter.py │ │ ├── shoonya_mapping.py │ │ └── shoonya_websocket.py ├── tradejini │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ ├── nxtradstream.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── nxtradstream.py │ │ ├── tradejini_adapter.py │ │ └── tradejini_mapping.py ├── upstox │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── MarketDataFeedV3.proto │ │ ├── MarketDataFeedV3_pb2.py │ │ ├── upstox_adapter.py │ │ ├── upstox_client.py │ │ └── upstox_mapping.py ├── wisdom │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── baseurl.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── wisdom_adapter.py │ │ ├── wisdom_mapping.py │ │ └── wisdom_websocket.py ├── zebu │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── auth_api.py │ │ ├── data.py │ │ ├── funds.py │ │ ├── margin_api.py │ │ └── order_api.py │ ├── database │ │ └── master_contract_db.py │ ├── mapping │ │ ├── margin_data.py │ │ ├── order_data.py │ │ └── transform_data.py │ ├── plugin.json │ └── streaming │ │ ├── __init__.py │ │ ├── zebu_adapter.py │ │ ├── zebu_mapping.py │ │ └── zebu_websocket.py └── zerodha │ ├── api │ ├── __init__.py │ ├── auth_api.py │ ├── data.py │ ├── funds.py │ ├── margin_api.py │ └── order_api.py │ ├── database │ └── master_contract_db.py │ ├── mapping │ ├── margin_data.py │ ├── order_data.py │ └── transform_data.py │ ├── plugin.json │ └── streaming │ ├── __init__.py │ ├── zerodha_adapter.py │ ├── zerodha_mapping.py │ └── zerodha_websocket.py ├── collections ├── openalgo │ ├── BasketOrder.bru │ ├── CancelAllOrder.bru │ ├── CancelOrder.bru │ ├── Chartink.bru │ ├── CloseAllPositions.bru │ ├── DATA │ │ └── optionchain.bru │ ├── ModifyOrder.bru │ ├── PlaceOrder.bru │ ├── PlaceSmartOrder.bru │ ├── SplitOrder.bru │ ├── analyzer_status.bru │ ├── analyzer_toggle.bru │ ├── bruno.json │ ├── collection.bru │ ├── depth.bru │ ├── expiry.bru │ ├── funds.bru │ ├── history (EOD).bru │ ├── history (intraday).bru │ ├── holdings.bru │ ├── instruments.bru │ ├── intervals.bru │ ├── margin.bru │ ├── multiquotes.bru │ ├── openposition.bru │ ├── optiongreeks.bru │ ├── optionsmultiorder.bru │ ├── optionsorder.bru │ ├── optionsymbol.bru │ ├── orderbook.bru │ ├── orderstatus.bru │ ├── ping.bru │ ├── positionbook.bru │ ├── quotes.bru │ ├── search.bru │ ├── symbol.bru │ ├── syntheticfuture.bru │ ├── telegram.bru │ ├── ticker.bru │ └── tradebook.bru ├── openalgo_bruno.json └── postman │ ├── openalgo.postman_collection.json │ └── openalgo.postman_environment.json ├── cors.py ├── csp.py ├── database ├── __init__.py ├── action_center_db.py ├── analyzer_db.py ├── apilog_db.py ├── auth_db.py ├── cache_restoration.py ├── chartink_db.py ├── db_init_helper.py ├── latency_db.py ├── master_contract_cache_hook.py ├── master_contract_status_db.py ├── sandbox_db.py ├── settings_db.py ├── strategy_db.py ├── symbol.py ├── telegram_db.py ├── token_db.py ├── token_db_backup.py ├── token_db_enhanced.py ├── traffic_db.py ├── tv_search.py └── user_db.py ├── db └── readme.txt ├── design ├── 01_architecture.md ├── 02_api_layer.md ├── 03_broker_integration.md ├── 04_database_layer.md ├── 05_strategies.md ├── 06_authentication_platform.md ├── 07_configuration.md ├── 08_utilities.md ├── 09_websocket_architecture.md ├── 10_logging_system.md ├── 11_python_strategy_hosting.md ├── 12_deployment_architecture.md ├── 13_telegram_bot_integration.md ├── 14_sandbox_architecture.md ├── 15_action_center.md └── README.md ├── docker-compose.yaml ├── docs ├── ACTION_CENTER.md ├── API_OPTIONS_ORDER.md ├── API_OPTION_SYMBOL.md ├── API_ORDER_MODE.md ├── Analyzer.md ├── CACHE_ARCHITECTURE_AND_PLUGGABLE_SYSTEM.md ├── CSRF.md ├── CSRF_AUDIT_REPORT.md ├── CSRF_IMPLEMENTATION.md ├── CSRF_TESTING_GUIDE.md ├── ENHANCED_CACHE_IMPLEMENTATION.md ├── ENHANCED_PRODUCT_DOCUMENT.md ├── ESSENTIAL_RATE_LIMITING_SUMMARY.md ├── INSTRUMENTS_API.md ├── LATENCY_AUDIT.md ├── MARGIN_API_DOCUMENTATION.md ├── OPTIONCHAIN_API.md ├── OPTIONGREEKS_API.md ├── OPTIONSMULTIORDER_API.md ├── OPTIONSORDER_API.md ├── OPTIONSYMBOL_API.md ├── PASSWORD_RESET.md ├── QUOTE_WEBSOCKET_EXAMPLE.md ├── SANDBOX_AND_TELEGRAM.md ├── SECURITY_AUDIT_REPORT.md ├── SECURITY_AUDIT_REPORT_UPDATED.md ├── SMTP_SETUP.md ├── SOCKETIO_FIX_README.md ├── TELEGRAM_ALERT_API.md ├── TELEGRAM_BOT.md ├── TELEGRAM_ORDER_ALERTS.md ├── TELEGRAM_SETUP.md ├── WEBSOCKET_FIX.md ├── WEBSOCKET_OPTIMIZATION.md ├── ZMQ_AUDIT_REPORT.md ├── architecture-diagram.png ├── audit.md ├── broker_factory.md ├── chartink.md ├── data.md ├── docker.md ├── docker_env_changes.md ├── expiry_api.md ├── gocharting_webhook_setup.md ├── httpx_client_documentation.md ├── international_broker_integration.md ├── logging.md ├── multiquotes.md ├── playground.md ├── pnltracker.md ├── prompt │ ├── SANDBOX_INTEGRATION_COMPLETE.md │ ├── openalgosdk.md │ ├── order-constants.md │ ├── sandbox_integration_status.md │ ├── sandbox_mode.md │ ├── services_documentation.md │ ├── symbols.md │ └── websockets.md ├── python_sdk.md ├── python_strategies │ ├── CHANGELOG.md │ ├── README.md │ ├── api-reference.md │ ├── complete-implementation-guide.md │ ├── editor-guide.md │ ├── index.md │ ├── installation-guide.md │ └── master-contract-state-management.md ├── raspberrypi_setup.md ├── rate_limiting.md ├── report_security_audit.md ├── rust │ ├── 00-PRODUCT-DESIGN.md │ ├── 01-ARCHITECTURE.md │ ├── 02-DATABASE.md │ ├── 03-TAURI-COMMANDS.md │ ├── 04-FRONTEND.md │ ├── 05-BROKER-INTEGRATION.md │ ├── 06-ROADMAP.md │ ├── 07-REST-API.md │ ├── 08-WEBSOCKET-STREAMING.md │ ├── 09-SANDBOX-MODE.md │ ├── 10-ACTION-CENTER.md │ ├── 11-TELEGRAM-BOT.md │ ├── 12-SERVICES-LAYER.md │ ├── 13-CONFIGURATION.md │ ├── 14-LOGGING.md │ ├── 15-EXTERNAL-WEBHOOKS.md │ ├── 16-WEBHOOK-PLATFORMS.md │ ├── 17-ZERO-CONFIG-ARCHITECTURE.md │ ├── 18-SDK-COMPATIBILITY.md │ ├── 19-SECURITY.md │ ├── 20-API-REFERENCE.md │ ├── 21-MONITORING-DASHBOARDS.md │ └── README.md ├── sandbox │ ├── 01_overview.md │ ├── 02_getting_started.md │ ├── 03_order_management.md │ ├── 04_margin_system.md │ ├── 05_position_management.md │ ├── 05a_holdings_t1_settlement.md │ ├── 06_auto_squareoff.md │ ├── 07_database_schema.md │ ├── 08_architecture.md │ ├── 09_configuration.md │ ├── 10_api_reference.md │ ├── 11_troubleshooting.md │ ├── 12_regulatory_compliance.md │ └── README.md ├── search_api.md ├── security │ └── security-features.md ├── security_audit.md ├── strategy.md ├── ticker.md ├── traffic.md ├── websocket.md ├── websocket_angel_docs.md ├── websocket_auth_and_mapping.md ├── websocket_design_assessment.md ├── websocket_implementation.md ├── websocket_usage_example.md ├── websockets │ ├── examples │ │ └── websocket_usage.py │ ├── websocket_service_layer.md │ └── websocket_ui_documentation.md └── xtsapi.md ├── download ├── .sample.env ├── README.md ├── duckdb_downloader.py ├── ieod.py ├── sqlite_downloader.py └── symbols.csv ├── examples ├── go │ └── readme.md ├── nodejs │ └── readme.md └── python │ ├── NiftyOI.ipynb │ ├── data.ipynb │ ├── depth_20_example.py │ ├── depth_50_example.py │ ├── depth_example.py │ ├── ema_crossover.py │ ├── flask_optionchain.py │ ├── ltp_example.py │ ├── margin_example.ipynb │ ├── multiquotes_example.py │ ├── optionchain_example.py │ ├── placing ATM order.py │ ├── quote_example.py │ ├── stoploss_example.py │ ├── straddle_scheduler.py │ ├── straddle_with_stops.py │ ├── supertrend.py │ └── webhook.ipynb ├── extensions.py ├── install ├── Docker-install-readme.md ├── README.md ├── install-docker.sh ├── install-multi.sh ├── install.sh └── ubuntu-ip.sh ├── keys └── .gitignore ├── limiter.py ├── log ├── readme.md └── strategies │ └── .gitignore ├── mcp ├── README.md └── mcpserver.py ├── package.json ├── playground ├── Nifty_OI_profile.html ├── Nifty_OI_profile.md ├── Playground-screenshot.png ├── README.md ├── index.html ├── script.js └── style.css ├── postcss.config.mjs ├── pyproject.toml ├── requirements-nginx.txt ├── requirements.txt ├── restx_api ├── __init__.py ├── account_schema.py ├── analyzer.py ├── basket_order.py ├── cancel_all_order.py ├── cancel_order.py ├── close_position.py ├── data_schemas.py ├── depth.py ├── expiry.py ├── funds.py ├── history.py ├── holdings.py ├── instruments.py ├── intervals.py ├── margin.py ├── modify_order.py ├── multiquotes.py ├── openposition.py ├── option_chain.py ├── option_greeks.py ├── option_symbol.py ├── options_multiorder.py ├── options_order.py ├── orderbook.py ├── orderstatus.py ├── ping.py ├── place_order.py ├── place_smart_order.py ├── positionbook.py ├── quotes.py ├── schemas.py ├── search.py ├── split_order.py ├── symbol.py ├── synthetic_future.py ├── telegram_bot.py ├── ticker.py └── tradebook.py ├── sandbox ├── __init__.py ├── execution_engine.py ├── execution_thread.py ├── fund_manager.py ├── holdings_manager.py ├── order_manager.py ├── position_manager.py ├── squareoff_manager.py └── squareoff_thread.py ├── scripts └── integrate_remaining_services.py ├── services ├── action_center_service.py ├── analyzer_service.py ├── basket_order_service.py ├── cancel_all_order_service.py ├── cancel_order_service.py ├── close_position_service.py ├── depth_service.py ├── expiry_service.py ├── funds_service.py ├── history_service.py ├── holdings_service.py ├── instruments_service.py ├── intervals_service.py ├── margin_service.py ├── market_data_service.py ├── modify_order_service.py ├── openposition_service.py ├── option_chain_service.py ├── option_greeks_service.py ├── option_symbol_service.py ├── options_multiorder_service.py ├── order_router_service.py ├── orderbook_service.py ├── orderstatus_service.py ├── pending_order_execution_service.py ├── ping_service.py ├── place_options_order_service.py ├── place_order_service.py ├── place_smart_order_service.py ├── positionbook_service.py ├── quotes_service.py ├── sandbox_service.py ├── search_service.py ├── split_order_service.py ├── symbol_service.py ├── synthetic_future_service.py ├── telegram_alert_service.py ├── telegram_bot_service.py ├── telegram_bot_service_fixed.py ├── telegram_bot_service_v2.py ├── tradebook_service.py ├── websocket_client.py └── websocket_service.py ├── src └── css │ └── styles.css ├── start.sh ├── static ├── css │ ├── main.css │ ├── prism.css │ ├── python-editor-simple.css │ ├── python-editor.css │ └── tradingview.css ├── docs │ └── gocharting_webhook_setup.md ├── favicon │ ├── android-chrome-192x192.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo.png │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── images │ ├── brokers │ │ ├── 5paisa.png │ │ ├── aliceblue.png │ │ ├── angel.png │ │ ├── dhan.png │ │ ├── fyers.png │ │ ├── icici.png │ │ ├── kotak.png │ │ ├── upstox.png │ │ └── zerodha.png │ ├── copy-icon.png │ ├── image.png │ ├── thumbs-up.png │ └── yoga.png ├── js │ ├── app.js │ ├── chart.min.js │ ├── codemirror-python-bundle.js │ ├── gocharting.js │ ├── html2canvas-oklch-fix.js │ ├── lightweight-charts.standalone.production.js │ ├── mobile-menu.js │ ├── mode-toggle.js │ ├── playground.js │ ├── prism.js │ ├── python-editor-simple.js │ ├── socket-events.js │ ├── socket.io.min.js │ ├── theme.js │ └── tradingview.js └── sounds │ └── alert.mp3 ├── strategies ├── .gitignore ├── README.md ├── examples │ └── simple_ema_strategy.py └── scripts │ └── .gitignore ├── tailwind.config.mjs ├── templates ├── 404.html ├── 500.html ├── 5paisa.html ├── action_center.html ├── aliceblue.html ├── analyzer.html ├── angel.html ├── apikey.html ├── base.html ├── broker.html ├── chartink │ ├── configure_symbols.html │ ├── index.html │ ├── new_strategy.html │ └── view_strategy.html ├── components │ ├── loading_spinner.html │ ├── log_entry.html │ ├── logs_filters.html │ ├── logs_scripts.html │ ├── logs_styles.html │ └── pagination.html ├── dashboard.html ├── definedgeotp.html ├── download.html ├── faq.html ├── firstock.html ├── footer.html ├── gocharting.html ├── holdings.html ├── index.html ├── kotak.html ├── latency │ └── dashboard.html ├── layout.html ├── login.html ├── logs.html ├── motilal.html ├── mstock.html ├── navbar.html ├── orderbook.html ├── platforms.html ├── playground.html ├── pnltracker.html ├── positions.html ├── profile.html ├── public_navbar.html ├── python_strategy │ ├── edit.html │ ├── index.html │ ├── logs.html │ └── new.html ├── reset_password.html ├── samco.html ├── sandbox.html ├── search.html ├── security │ └── dashboard.html ├── setup.html ├── shoonya.html ├── strategy │ ├── configure_symbols.html │ ├── index.html │ ├── new_strategy.html │ └── view_strategy.html ├── telegram │ ├── analytics.html │ ├── config.html │ ├── index.html │ └── users.html ├── token.html ├── tradebook.html ├── tradejini.html ├── tradingview.html ├── traffic │ └── dashboard.html ├── websocket │ └── test_market_data.html └── zebu.html ├── test ├── README_OPTION_GREEKS_TESTS.md ├── README_OPTION_TESTS.md ├── README_TELEGRAM_ALERT_TESTS.md ├── all_symbols.csv ├── debug_telegram_link.py ├── iteration_test.py ├── ltp_example_test_1800 symbols.py ├── ltp_test_report.py ├── sandbox │ ├── README.md │ ├── __init__.py │ ├── test_cnc_sell_validation.py │ ├── test_fund_manager.py │ ├── test_margin_scenarios.py │ ├── test_orderbook_api.py │ └── test_rejected_order.py ├── simple_depth_test.py ├── simple_ltp_test.py ├── simple_quote_test.py ├── symbols.csv ├── test_action_center.py ├── test_all_order_types_execution.py ├── test_analyzer_toggle_restriction.py ├── test_approve_orders.py ├── test_bot_web.py ├── test_broadcast_save.py ├── test_broker.py ├── test_broker_protocol.py ├── test_cache_compatibility.py ├── test_cache_performance.py ├── test_clear_action_center.py ├── test_csrf.py ├── test_email_functionality.py ├── test_flattrade_protocol.py ├── test_history_format.py ├── test_http_protocol.py ├── test_log_location.py ├── test_logout_csrf.py ├── test_mstock.py ├── test_navigation_update.py ├── test_option_greeks_api.py ├── test_option_symbol_api.py ├── test_options_multiorder_api.py ├── test_options_order_api.py ├── test_python_editor.py ├── test_rate_limits_mock.py ├── test_rate_limits_simple.py ├── test_save_strategy.html ├── test_simple_editor.html ├── test_telegram_alert_api.py ├── test_telegram_alerts.py ├── test_telegram_bot.py ├── test_telegram_charts.py ├── test_telegram_config.py ├── test_telegram_startup.py ├── test_tradingview_csrf.py ├── test_websocket.py └── test_websocket_service.py ├── tmp └── README.md ├── upgrade ├── README.md ├── add_feed_token.py ├── add_user_id.py ├── migrate_all.py ├── migrate_indexes.py ├── migrate_order_mode.py ├── migrate_sandbox.py ├── migrate_security_columns.py ├── migrate_smtp_simple.py └── migrate_telegram_bot.py ├── utils.py ├── utils ├── __init__.py ├── api_analyzer.py ├── auth_utils.py ├── config.py ├── constants.py ├── email_debug.py ├── email_utils.py ├── env_check.py ├── httpx_client.py ├── ip_helper.py ├── latency_monitor.py ├── logging.py ├── number_formatter.py ├── plugin_loader.py ├── security_middleware.py ├── session.py ├── socketio_error_handler.py ├── traffic_logger.py └── version.py ├── uv.lock └── websocket_proxy ├── __init__.py ├── app_integration.py ├── base_adapter.py ├── broker_factory.py ├── mapping.py ├── port_check.py └── server.py /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.ebextensions/01_flask.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/.ebextensions/01_flask.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/.gitignore -------------------------------------------------------------------------------- /.sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/.sample.env -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/INSTALL.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/app.py -------------------------------------------------------------------------------- /blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/analyzer.py -------------------------------------------------------------------------------- /blueprints/apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/apikey.py -------------------------------------------------------------------------------- /blueprints/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/auth.py -------------------------------------------------------------------------------- /blueprints/brlogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/brlogin.py -------------------------------------------------------------------------------- /blueprints/chartink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/chartink.py -------------------------------------------------------------------------------- /blueprints/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/core.py -------------------------------------------------------------------------------- /blueprints/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/dashboard.py -------------------------------------------------------------------------------- /blueprints/gc_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/gc_json.py -------------------------------------------------------------------------------- /blueprints/latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/latency.py -------------------------------------------------------------------------------- /blueprints/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/log.py -------------------------------------------------------------------------------- /blueprints/master_contract_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/master_contract_status.py -------------------------------------------------------------------------------- /blueprints/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/orders.py -------------------------------------------------------------------------------- /blueprints/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/platforms.py -------------------------------------------------------------------------------- /blueprints/playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/playground.py -------------------------------------------------------------------------------- /blueprints/pnltracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/pnltracker.py -------------------------------------------------------------------------------- /blueprints/python_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/python_strategy.py -------------------------------------------------------------------------------- /blueprints/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/sandbox.py -------------------------------------------------------------------------------- /blueprints/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/search.py -------------------------------------------------------------------------------- /blueprints/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/security.py -------------------------------------------------------------------------------- /blueprints/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/settings.py -------------------------------------------------------------------------------- /blueprints/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/strategy.py -------------------------------------------------------------------------------- /blueprints/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/telegram.py -------------------------------------------------------------------------------- /blueprints/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/traffic.py -------------------------------------------------------------------------------- /blueprints/tv_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/tv_json.py -------------------------------------------------------------------------------- /blueprints/websocket_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/blueprints/websocket_example.py -------------------------------------------------------------------------------- /broker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/aliceblue/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/aliceblue/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/api/auth_api.py -------------------------------------------------------------------------------- /broker/aliceblue/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/api/data.py -------------------------------------------------------------------------------- /broker/aliceblue/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/api/funds.py -------------------------------------------------------------------------------- /broker/aliceblue/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/api/margin_api.py -------------------------------------------------------------------------------- /broker/aliceblue/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/api/order_api.py -------------------------------------------------------------------------------- /broker/aliceblue/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/aliceblue/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/mapping/order_data.py -------------------------------------------------------------------------------- /broker/aliceblue/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/plugin.json -------------------------------------------------------------------------------- /broker/aliceblue/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/aliceblue/streaming/__init__.py -------------------------------------------------------------------------------- /broker/angel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/angel/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/angel/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/api/auth_api.py -------------------------------------------------------------------------------- /broker/angel/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/api/data.py -------------------------------------------------------------------------------- /broker/angel/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/api/funds.py -------------------------------------------------------------------------------- /broker/angel/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/api/margin_api.py -------------------------------------------------------------------------------- /broker/angel/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/api/order_api.py -------------------------------------------------------------------------------- /broker/angel/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/angel/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/mapping/order_data.py -------------------------------------------------------------------------------- /broker/angel/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/angel/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/plugin.json -------------------------------------------------------------------------------- /broker/angel/streaming/angel_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/streaming/angel_adapter.py -------------------------------------------------------------------------------- /broker/angel/streaming/angel_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/angel/streaming/angel_mapping.py -------------------------------------------------------------------------------- /broker/compositedge/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/compositedge/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/api/auth_api.py -------------------------------------------------------------------------------- /broker/compositedge/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/api/data.py -------------------------------------------------------------------------------- /broker/compositedge/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/api/funds.py -------------------------------------------------------------------------------- /broker/compositedge/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/api/margin_api.py -------------------------------------------------------------------------------- /broker/compositedge/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/api/order_api.py -------------------------------------------------------------------------------- /broker/compositedge/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/baseurl.py -------------------------------------------------------------------------------- /broker/compositedge/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/mapping/order_data.py -------------------------------------------------------------------------------- /broker/compositedge/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/compositedge/plugin.json -------------------------------------------------------------------------------- /broker/compositedge/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # Compositedge streaming module -------------------------------------------------------------------------------- /broker/definedge/__init__.py: -------------------------------------------------------------------------------- 1 | # DefinedGe Securities Broker Integration for OpenAlgo 2 | -------------------------------------------------------------------------------- /broker/definedge/api/__init__.py: -------------------------------------------------------------------------------- 1 | # DefinedGe Securities API modules 2 | -------------------------------------------------------------------------------- /broker/definedge/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/api/auth_api.py -------------------------------------------------------------------------------- /broker/definedge/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/api/data.py -------------------------------------------------------------------------------- /broker/definedge/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/api/funds.py -------------------------------------------------------------------------------- /broker/definedge/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/api/margin_api.py -------------------------------------------------------------------------------- /broker/definedge/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/api/order_api.py -------------------------------------------------------------------------------- /broker/definedge/database/__init__.py: -------------------------------------------------------------------------------- 1 | # DefinedGe Securities database modules 2 | -------------------------------------------------------------------------------- /broker/definedge/mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # DefinedGe Securities mapping modules 2 | -------------------------------------------------------------------------------- /broker/definedge/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/definedge/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/mapping/order_data.py -------------------------------------------------------------------------------- /broker/definedge/mapping/symbol_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/mapping/symbol_map.py -------------------------------------------------------------------------------- /broker/definedge/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/definedge/plugin.json -------------------------------------------------------------------------------- /broker/definedge/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # DefinedGe Securities streaming modules 2 | -------------------------------------------------------------------------------- /broker/dhan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/dhan/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/dhan/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/api/auth_api.py -------------------------------------------------------------------------------- /broker/dhan/api/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/api/baseurl.py -------------------------------------------------------------------------------- /broker/dhan/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/api/data.py -------------------------------------------------------------------------------- /broker/dhan/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/api/funds.py -------------------------------------------------------------------------------- /broker/dhan/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/api/margin_api.py -------------------------------------------------------------------------------- /broker/dhan/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/api/order_api.py -------------------------------------------------------------------------------- /broker/dhan/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/dhan/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/mapping/order_data.py -------------------------------------------------------------------------------- /broker/dhan/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/dhan/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/plugin.json -------------------------------------------------------------------------------- /broker/dhan/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/streaming/__init__.py -------------------------------------------------------------------------------- /broker/dhan/streaming/dhan_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/streaming/dhan_adapter.py -------------------------------------------------------------------------------- /broker/dhan/streaming/dhan_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/streaming/dhan_mapping.py -------------------------------------------------------------------------------- /broker/dhan/streaming/dhan_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan/streaming/dhan_websocket.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/api/auth_api.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/api/baseurl.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/api/data.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/api/funds.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/api/margin_api.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/api/order_api.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/mapping/order_data.py -------------------------------------------------------------------------------- /broker/dhan_sandbox/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/dhan_sandbox/plugin.json -------------------------------------------------------------------------------- /broker/firstock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/firstock/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/firstock/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/api/auth_api.py -------------------------------------------------------------------------------- /broker/firstock/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/api/data.py -------------------------------------------------------------------------------- /broker/firstock/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/api/funds.py -------------------------------------------------------------------------------- /broker/firstock/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/api/margin_api.py -------------------------------------------------------------------------------- /broker/firstock/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/api/order_api.py -------------------------------------------------------------------------------- /broker/firstock/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/firstock/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/mapping/order_data.py -------------------------------------------------------------------------------- /broker/firstock/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/plugin.json -------------------------------------------------------------------------------- /broker/firstock/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/firstock/streaming/__init__.py -------------------------------------------------------------------------------- /broker/fivepaisa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/fivepaisa/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/fivepaisa/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/api/auth_api.py -------------------------------------------------------------------------------- /broker/fivepaisa/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/api/data.py -------------------------------------------------------------------------------- /broker/fivepaisa/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/api/funds.py -------------------------------------------------------------------------------- /broker/fivepaisa/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/api/margin_api.py -------------------------------------------------------------------------------- /broker/fivepaisa/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/api/order_api.py -------------------------------------------------------------------------------- /broker/fivepaisa/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/mapping/order_data.py -------------------------------------------------------------------------------- /broker/fivepaisa/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/plugin.json -------------------------------------------------------------------------------- /broker/fivepaisa/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisa/streaming/__init__.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/fivepaisaxts/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/api/auth_api.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/api/data.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/api/funds.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/api/margin_api.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/api/order_api.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/baseurl.py -------------------------------------------------------------------------------- /broker/fivepaisaxts/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fivepaisaxts/plugin.json -------------------------------------------------------------------------------- /broker/fivepaisaxts/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # FivepaisaXTS streaming module -------------------------------------------------------------------------------- /broker/flattrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/flattrade/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/flattrade/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/api/auth_api.py -------------------------------------------------------------------------------- /broker/flattrade/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/api/data.py -------------------------------------------------------------------------------- /broker/flattrade/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/api/funds.py -------------------------------------------------------------------------------- /broker/flattrade/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/api/margin_api.py -------------------------------------------------------------------------------- /broker/flattrade/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/api/order_api.py -------------------------------------------------------------------------------- /broker/flattrade/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/mapping/order_data.py -------------------------------------------------------------------------------- /broker/flattrade/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/plugin.json -------------------------------------------------------------------------------- /broker/flattrade/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/flattrade/streaming/__init__.py -------------------------------------------------------------------------------- /broker/fyers/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/fyers/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/api/auth_api.py -------------------------------------------------------------------------------- /broker/fyers/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/api/data.py -------------------------------------------------------------------------------- /broker/fyers/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/api/funds.py -------------------------------------------------------------------------------- /broker/fyers/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/api/margin_api.py -------------------------------------------------------------------------------- /broker/fyers/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/api/order_api.py -------------------------------------------------------------------------------- /broker/fyers/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/fyers/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/mapping/order_data.py -------------------------------------------------------------------------------- /broker/fyers/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/fyers/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/plugin.json -------------------------------------------------------------------------------- /broker/fyers/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # Fyers HSM WebSocket Streaming Module -------------------------------------------------------------------------------- /broker/fyers/streaming/msg_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/fyers/streaming/msg_pb2.py -------------------------------------------------------------------------------- /broker/groww/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/groww/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/groww/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/api/auth_api.py -------------------------------------------------------------------------------- /broker/groww/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/api/data.py -------------------------------------------------------------------------------- /broker/groww/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/api/funds.py -------------------------------------------------------------------------------- /broker/groww/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/api/margin_api.py -------------------------------------------------------------------------------- /broker/groww/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/api/order_api.py -------------------------------------------------------------------------------- /broker/groww/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/groww/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/mapping/order_data.py -------------------------------------------------------------------------------- /broker/groww/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/groww/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/plugin.json -------------------------------------------------------------------------------- /broker/groww/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/streaming/__init__.py -------------------------------------------------------------------------------- /broker/groww/streaming/groww_nats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/streaming/groww_nats.py -------------------------------------------------------------------------------- /broker/groww/streaming/groww_nkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/groww/streaming/groww_nkeys.py -------------------------------------------------------------------------------- /broker/ibulls/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/ibulls/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/api/auth_api.py -------------------------------------------------------------------------------- /broker/ibulls/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/api/data.py -------------------------------------------------------------------------------- /broker/ibulls/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/api/funds.py -------------------------------------------------------------------------------- /broker/ibulls/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/api/margin_api.py -------------------------------------------------------------------------------- /broker/ibulls/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/api/order_api.py -------------------------------------------------------------------------------- /broker/ibulls/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/baseurl.py -------------------------------------------------------------------------------- /broker/ibulls/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/ibulls/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/mapping/order_data.py -------------------------------------------------------------------------------- /broker/ibulls/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/ibulls/plugin.json -------------------------------------------------------------------------------- /broker/ibulls/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # Ibulls streaming module -------------------------------------------------------------------------------- /broker/iifl/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/iifl/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/api/auth_api.py -------------------------------------------------------------------------------- /broker/iifl/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/api/data.py -------------------------------------------------------------------------------- /broker/iifl/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/api/funds.py -------------------------------------------------------------------------------- /broker/iifl/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/api/margin_api.py -------------------------------------------------------------------------------- /broker/iifl/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/api/order_api.py -------------------------------------------------------------------------------- /broker/iifl/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/baseurl.py -------------------------------------------------------------------------------- /broker/iifl/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/iifl/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/mapping/order_data.py -------------------------------------------------------------------------------- /broker/iifl/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/iifl/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/plugin.json -------------------------------------------------------------------------------- /broker/iifl/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # Iifl streaming module -------------------------------------------------------------------------------- /broker/iifl/streaming/iifl_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/streaming/iifl_adapter.py -------------------------------------------------------------------------------- /broker/iifl/streaming/iifl_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/iifl/streaming/iifl_mapping.py -------------------------------------------------------------------------------- /broker/indmoney/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/indmoney/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/indmoney/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/api/auth_api.py -------------------------------------------------------------------------------- /broker/indmoney/api/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/api/baseurl.py -------------------------------------------------------------------------------- /broker/indmoney/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/api/data.py -------------------------------------------------------------------------------- /broker/indmoney/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/api/funds.py -------------------------------------------------------------------------------- /broker/indmoney/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/api/margin_api.py -------------------------------------------------------------------------------- /broker/indmoney/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/api/order_api.py -------------------------------------------------------------------------------- /broker/indmoney/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/indmoney/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/mapping/order_data.py -------------------------------------------------------------------------------- /broker/indmoney/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/plugin.json -------------------------------------------------------------------------------- /broker/indmoney/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/indmoney/streaming/__init__.py -------------------------------------------------------------------------------- /broker/jainamxts/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/jainamxts/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/api/auth_api.py -------------------------------------------------------------------------------- /broker/jainamxts/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/api/data.py -------------------------------------------------------------------------------- /broker/jainamxts/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/api/funds.py -------------------------------------------------------------------------------- /broker/jainamxts/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/api/margin_api.py -------------------------------------------------------------------------------- /broker/jainamxts/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/api/order_api.py -------------------------------------------------------------------------------- /broker/jainamxts/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/baseurl.py -------------------------------------------------------------------------------- /broker/jainamxts/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/mapping/order_data.py -------------------------------------------------------------------------------- /broker/jainamxts/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/jainamxts/plugin.json -------------------------------------------------------------------------------- /broker/jainamxts/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # JainamXTS streaming module -------------------------------------------------------------------------------- /broker/kotak/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/kotak/api/HSWebSocketLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/api/HSWebSocketLib.py -------------------------------------------------------------------------------- /broker/kotak/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/kotak/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/api/auth_api.py -------------------------------------------------------------------------------- /broker/kotak/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/api/data.py -------------------------------------------------------------------------------- /broker/kotak/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/api/funds.py -------------------------------------------------------------------------------- /broker/kotak/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/api/margin_api.py -------------------------------------------------------------------------------- /broker/kotak/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/api/order_api.py -------------------------------------------------------------------------------- /broker/kotak/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/kotak/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/mapping/order_data.py -------------------------------------------------------------------------------- /broker/kotak/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/kotak/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/plugin.json -------------------------------------------------------------------------------- /broker/kotak/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/kotak/streaming/__init__.py -------------------------------------------------------------------------------- /broker/motilal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/motilal/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/motilal/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/api/auth_api.py -------------------------------------------------------------------------------- /broker/motilal/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/api/data.py -------------------------------------------------------------------------------- /broker/motilal/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/api/funds.py -------------------------------------------------------------------------------- /broker/motilal/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/api/margin_api.py -------------------------------------------------------------------------------- /broker/motilal/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/api/order_api.py -------------------------------------------------------------------------------- /broker/motilal/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/motilal/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/mapping/order_data.py -------------------------------------------------------------------------------- /broker/motilal/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/plugin.json -------------------------------------------------------------------------------- /broker/motilal/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/motilal/streaming/__init__.py -------------------------------------------------------------------------------- /broker/mstock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/mstock/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/mstock/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/api/auth_api.py -------------------------------------------------------------------------------- /broker/mstock/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/api/data.py -------------------------------------------------------------------------------- /broker/mstock/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/api/funds.py -------------------------------------------------------------------------------- /broker/mstock/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/api/margin_api.py -------------------------------------------------------------------------------- /broker/mstock/api/mstockwebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/api/mstockwebsocket.py -------------------------------------------------------------------------------- /broker/mstock/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/api/order_api.py -------------------------------------------------------------------------------- /broker/mstock/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/mstock/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/mapping/order_data.py -------------------------------------------------------------------------------- /broker/mstock/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/plugin.json -------------------------------------------------------------------------------- /broker/mstock/remainwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/remainwork.md -------------------------------------------------------------------------------- /broker/mstock/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/mstock/streaming/__init__.py -------------------------------------------------------------------------------- /broker/paytm/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/paytm/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/api/auth_api.py -------------------------------------------------------------------------------- /broker/paytm/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/api/data.py -------------------------------------------------------------------------------- /broker/paytm/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/api/funds.py -------------------------------------------------------------------------------- /broker/paytm/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/api/margin_api.py -------------------------------------------------------------------------------- /broker/paytm/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/api/order_api.py -------------------------------------------------------------------------------- /broker/paytm/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/paytm/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/mapping/order_data.py -------------------------------------------------------------------------------- /broker/paytm/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/paytm/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/plugin.json -------------------------------------------------------------------------------- /broker/paytm/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/paytm/streaming/__init__.py -------------------------------------------------------------------------------- /broker/pocketful/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/pocketful/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/api/auth_api.py -------------------------------------------------------------------------------- /broker/pocketful/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/api/data.py -------------------------------------------------------------------------------- /broker/pocketful/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/api/funds.py -------------------------------------------------------------------------------- /broker/pocketful/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/api/margin_api.py -------------------------------------------------------------------------------- /broker/pocketful/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/api/order_api.py -------------------------------------------------------------------------------- /broker/pocketful/api/packet_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/api/packet_decoder.py -------------------------------------------------------------------------------- /broker/pocketful/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/mapping/order_data.py -------------------------------------------------------------------------------- /broker/pocketful/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/pocketful/plugin.json -------------------------------------------------------------------------------- /broker/samco/__init__.py: -------------------------------------------------------------------------------- 1 | # Samco broker module 2 | -------------------------------------------------------------------------------- /broker/samco/api/__init__.py: -------------------------------------------------------------------------------- 1 | # Samco API module 2 | -------------------------------------------------------------------------------- /broker/samco/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/api/auth_api.py -------------------------------------------------------------------------------- /broker/samco/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/api/data.py -------------------------------------------------------------------------------- /broker/samco/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/api/funds.py -------------------------------------------------------------------------------- /broker/samco/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/api/margin_api.py -------------------------------------------------------------------------------- /broker/samco/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/api/order_api.py -------------------------------------------------------------------------------- /broker/samco/database/__init__.py: -------------------------------------------------------------------------------- 1 | # Samco database module 2 | -------------------------------------------------------------------------------- /broker/samco/mapping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/samco/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/samco/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/mapping/order_data.py -------------------------------------------------------------------------------- /broker/samco/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/samco/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/samco/streaming/__init__.py -------------------------------------------------------------------------------- /broker/shoonya/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/shoonya/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/shoonya/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/api/auth_api.py -------------------------------------------------------------------------------- /broker/shoonya/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/api/data.py -------------------------------------------------------------------------------- /broker/shoonya/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/api/funds.py -------------------------------------------------------------------------------- /broker/shoonya/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/api/margin_api.py -------------------------------------------------------------------------------- /broker/shoonya/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/api/order_api.py -------------------------------------------------------------------------------- /broker/shoonya/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/shoonya/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/mapping/order_data.py -------------------------------------------------------------------------------- /broker/shoonya/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/plugin.json -------------------------------------------------------------------------------- /broker/shoonya/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/shoonya/streaming/__init__.py -------------------------------------------------------------------------------- /broker/tradejini/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/tradejini/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/tradejini/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/api/auth_api.py -------------------------------------------------------------------------------- /broker/tradejini/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/api/data.py -------------------------------------------------------------------------------- /broker/tradejini/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/api/funds.py -------------------------------------------------------------------------------- /broker/tradejini/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/api/margin_api.py -------------------------------------------------------------------------------- /broker/tradejini/api/nxtradstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/api/nxtradstream.py -------------------------------------------------------------------------------- /broker/tradejini/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/api/order_api.py -------------------------------------------------------------------------------- /broker/tradejini/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/mapping/order_data.py -------------------------------------------------------------------------------- /broker/tradejini/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/plugin.json -------------------------------------------------------------------------------- /broker/tradejini/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/tradejini/streaming/__init__.py -------------------------------------------------------------------------------- /broker/upstox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/upstox/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/upstox/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/api/auth_api.py -------------------------------------------------------------------------------- /broker/upstox/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/api/data.py -------------------------------------------------------------------------------- /broker/upstox/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/api/funds.py -------------------------------------------------------------------------------- /broker/upstox/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/api/margin_api.py -------------------------------------------------------------------------------- /broker/upstox/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/api/order_api.py -------------------------------------------------------------------------------- /broker/upstox/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/upstox/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/mapping/order_data.py -------------------------------------------------------------------------------- /broker/upstox/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/upstox/plugin.json -------------------------------------------------------------------------------- /broker/wisdom/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/wisdom/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/api/auth_api.py -------------------------------------------------------------------------------- /broker/wisdom/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/api/data.py -------------------------------------------------------------------------------- /broker/wisdom/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/api/funds.py -------------------------------------------------------------------------------- /broker/wisdom/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/api/margin_api.py -------------------------------------------------------------------------------- /broker/wisdom/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/api/order_api.py -------------------------------------------------------------------------------- /broker/wisdom/baseurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/baseurl.py -------------------------------------------------------------------------------- /broker/wisdom/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/wisdom/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/mapping/order_data.py -------------------------------------------------------------------------------- /broker/wisdom/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/wisdom/plugin.json -------------------------------------------------------------------------------- /broker/wisdom/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # Wisdom streaming module -------------------------------------------------------------------------------- /broker/zebu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/zebu/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/zebu/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/api/auth_api.py -------------------------------------------------------------------------------- /broker/zebu/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/api/data.py -------------------------------------------------------------------------------- /broker/zebu/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/api/funds.py -------------------------------------------------------------------------------- /broker/zebu/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/api/margin_api.py -------------------------------------------------------------------------------- /broker/zebu/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/api/order_api.py -------------------------------------------------------------------------------- /broker/zebu/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/zebu/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/mapping/order_data.py -------------------------------------------------------------------------------- /broker/zebu/mapping/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/mapping/transform_data.py -------------------------------------------------------------------------------- /broker/zebu/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/plugin.json -------------------------------------------------------------------------------- /broker/zebu/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/streaming/__init__.py -------------------------------------------------------------------------------- /broker/zebu/streaming/zebu_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/streaming/zebu_adapter.py -------------------------------------------------------------------------------- /broker/zebu/streaming/zebu_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zebu/streaming/zebu_mapping.py -------------------------------------------------------------------------------- /broker/zerodha/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broker/zerodha/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/api/auth_api.py -------------------------------------------------------------------------------- /broker/zerodha/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/api/data.py -------------------------------------------------------------------------------- /broker/zerodha/api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/api/funds.py -------------------------------------------------------------------------------- /broker/zerodha/api/margin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/api/margin_api.py -------------------------------------------------------------------------------- /broker/zerodha/api/order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/api/order_api.py -------------------------------------------------------------------------------- /broker/zerodha/mapping/margin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/mapping/margin_data.py -------------------------------------------------------------------------------- /broker/zerodha/mapping/order_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/mapping/order_data.py -------------------------------------------------------------------------------- /broker/zerodha/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/plugin.json -------------------------------------------------------------------------------- /broker/zerodha/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/broker/zerodha/streaming/__init__.py -------------------------------------------------------------------------------- /collections/openalgo/BasketOrder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/BasketOrder.bru -------------------------------------------------------------------------------- /collections/openalgo/CancelOrder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/CancelOrder.bru -------------------------------------------------------------------------------- /collections/openalgo/Chartink.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/Chartink.bru -------------------------------------------------------------------------------- /collections/openalgo/ModifyOrder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/ModifyOrder.bru -------------------------------------------------------------------------------- /collections/openalgo/PlaceOrder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/PlaceOrder.bru -------------------------------------------------------------------------------- /collections/openalgo/SplitOrder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/SplitOrder.bru -------------------------------------------------------------------------------- /collections/openalgo/bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/bruno.json -------------------------------------------------------------------------------- /collections/openalgo/collection.bru: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/openalgo/depth.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/depth.bru -------------------------------------------------------------------------------- /collections/openalgo/expiry.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/expiry.bru -------------------------------------------------------------------------------- /collections/openalgo/funds.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/funds.bru -------------------------------------------------------------------------------- /collections/openalgo/history (EOD).bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/history (EOD).bru -------------------------------------------------------------------------------- /collections/openalgo/holdings.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/holdings.bru -------------------------------------------------------------------------------- /collections/openalgo/instruments.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/instruments.bru -------------------------------------------------------------------------------- /collections/openalgo/intervals.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/intervals.bru -------------------------------------------------------------------------------- /collections/openalgo/margin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/margin.bru -------------------------------------------------------------------------------- /collections/openalgo/multiquotes.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/multiquotes.bru -------------------------------------------------------------------------------- /collections/openalgo/openposition.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/openposition.bru -------------------------------------------------------------------------------- /collections/openalgo/optiongreeks.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/optiongreeks.bru -------------------------------------------------------------------------------- /collections/openalgo/optionsorder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/optionsorder.bru -------------------------------------------------------------------------------- /collections/openalgo/optionsymbol.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/optionsymbol.bru -------------------------------------------------------------------------------- /collections/openalgo/orderbook.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/orderbook.bru -------------------------------------------------------------------------------- /collections/openalgo/orderstatus.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/orderstatus.bru -------------------------------------------------------------------------------- /collections/openalgo/ping.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/ping.bru -------------------------------------------------------------------------------- /collections/openalgo/positionbook.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/positionbook.bru -------------------------------------------------------------------------------- /collections/openalgo/quotes.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/quotes.bru -------------------------------------------------------------------------------- /collections/openalgo/search.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/search.bru -------------------------------------------------------------------------------- /collections/openalgo/symbol.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/symbol.bru -------------------------------------------------------------------------------- /collections/openalgo/telegram.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/telegram.bru -------------------------------------------------------------------------------- /collections/openalgo/ticker.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/ticker.bru -------------------------------------------------------------------------------- /collections/openalgo/tradebook.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo/tradebook.bru -------------------------------------------------------------------------------- /collections/openalgo_bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/collections/openalgo_bruno.json -------------------------------------------------------------------------------- /cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/cors.py -------------------------------------------------------------------------------- /csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/csp.py -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/action_center_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/action_center_db.py -------------------------------------------------------------------------------- /database/analyzer_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/analyzer_db.py -------------------------------------------------------------------------------- /database/apilog_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/apilog_db.py -------------------------------------------------------------------------------- /database/auth_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/auth_db.py -------------------------------------------------------------------------------- /database/cache_restoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/cache_restoration.py -------------------------------------------------------------------------------- /database/chartink_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/chartink_db.py -------------------------------------------------------------------------------- /database/db_init_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/db_init_helper.py -------------------------------------------------------------------------------- /database/latency_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/latency_db.py -------------------------------------------------------------------------------- /database/master_contract_cache_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/master_contract_cache_hook.py -------------------------------------------------------------------------------- /database/master_contract_status_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/master_contract_status_db.py -------------------------------------------------------------------------------- /database/sandbox_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/sandbox_db.py -------------------------------------------------------------------------------- /database/settings_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/settings_db.py -------------------------------------------------------------------------------- /database/strategy_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/strategy_db.py -------------------------------------------------------------------------------- /database/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/symbol.py -------------------------------------------------------------------------------- /database/telegram_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/telegram_db.py -------------------------------------------------------------------------------- /database/token_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/token_db.py -------------------------------------------------------------------------------- /database/token_db_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/token_db_backup.py -------------------------------------------------------------------------------- /database/token_db_enhanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/token_db_enhanced.py -------------------------------------------------------------------------------- /database/traffic_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/traffic_db.py -------------------------------------------------------------------------------- /database/tv_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/tv_search.py -------------------------------------------------------------------------------- /database/user_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/database/user_db.py -------------------------------------------------------------------------------- /db/readme.txt: -------------------------------------------------------------------------------- 1 | This Folder Contains Sqlite DB Files -------------------------------------------------------------------------------- /design/01_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/01_architecture.md -------------------------------------------------------------------------------- /design/02_api_layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/02_api_layer.md -------------------------------------------------------------------------------- /design/03_broker_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/03_broker_integration.md -------------------------------------------------------------------------------- /design/04_database_layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/04_database_layer.md -------------------------------------------------------------------------------- /design/05_strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/05_strategies.md -------------------------------------------------------------------------------- /design/06_authentication_platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/06_authentication_platform.md -------------------------------------------------------------------------------- /design/07_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/07_configuration.md -------------------------------------------------------------------------------- /design/08_utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/08_utilities.md -------------------------------------------------------------------------------- /design/09_websocket_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/09_websocket_architecture.md -------------------------------------------------------------------------------- /design/10_logging_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/10_logging_system.md -------------------------------------------------------------------------------- /design/11_python_strategy_hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/11_python_strategy_hosting.md -------------------------------------------------------------------------------- /design/12_deployment_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/12_deployment_architecture.md -------------------------------------------------------------------------------- /design/13_telegram_bot_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/13_telegram_bot_integration.md -------------------------------------------------------------------------------- /design/14_sandbox_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/14_sandbox_architecture.md -------------------------------------------------------------------------------- /design/15_action_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/15_action_center.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/design/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/ACTION_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/ACTION_CENTER.md -------------------------------------------------------------------------------- /docs/API_OPTIONS_ORDER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/API_OPTIONS_ORDER.md -------------------------------------------------------------------------------- /docs/API_OPTION_SYMBOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/API_OPTION_SYMBOL.md -------------------------------------------------------------------------------- /docs/API_ORDER_MODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/API_ORDER_MODE.md -------------------------------------------------------------------------------- /docs/Analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/Analyzer.md -------------------------------------------------------------------------------- /docs/CSRF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/CSRF.md -------------------------------------------------------------------------------- /docs/CSRF_AUDIT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/CSRF_AUDIT_REPORT.md -------------------------------------------------------------------------------- /docs/CSRF_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/CSRF_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/CSRF_TESTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/CSRF_TESTING_GUIDE.md -------------------------------------------------------------------------------- /docs/ENHANCED_CACHE_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/ENHANCED_CACHE_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/ENHANCED_PRODUCT_DOCUMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/ENHANCED_PRODUCT_DOCUMENT.md -------------------------------------------------------------------------------- /docs/INSTRUMENTS_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/INSTRUMENTS_API.md -------------------------------------------------------------------------------- /docs/LATENCY_AUDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/LATENCY_AUDIT.md -------------------------------------------------------------------------------- /docs/MARGIN_API_DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/MARGIN_API_DOCUMENTATION.md -------------------------------------------------------------------------------- /docs/OPTIONCHAIN_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/OPTIONCHAIN_API.md -------------------------------------------------------------------------------- /docs/OPTIONGREEKS_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/OPTIONGREEKS_API.md -------------------------------------------------------------------------------- /docs/OPTIONSMULTIORDER_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/OPTIONSMULTIORDER_API.md -------------------------------------------------------------------------------- /docs/OPTIONSORDER_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/OPTIONSORDER_API.md -------------------------------------------------------------------------------- /docs/OPTIONSYMBOL_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/OPTIONSYMBOL_API.md -------------------------------------------------------------------------------- /docs/PASSWORD_RESET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/PASSWORD_RESET.md -------------------------------------------------------------------------------- /docs/QUOTE_WEBSOCKET_EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/QUOTE_WEBSOCKET_EXAMPLE.md -------------------------------------------------------------------------------- /docs/SANDBOX_AND_TELEGRAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/SANDBOX_AND_TELEGRAM.md -------------------------------------------------------------------------------- /docs/SECURITY_AUDIT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/SECURITY_AUDIT_REPORT.md -------------------------------------------------------------------------------- /docs/SECURITY_AUDIT_REPORT_UPDATED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/SECURITY_AUDIT_REPORT_UPDATED.md -------------------------------------------------------------------------------- /docs/SMTP_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/SMTP_SETUP.md -------------------------------------------------------------------------------- /docs/SOCKETIO_FIX_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/SOCKETIO_FIX_README.md -------------------------------------------------------------------------------- /docs/TELEGRAM_ALERT_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/TELEGRAM_ALERT_API.md -------------------------------------------------------------------------------- /docs/TELEGRAM_BOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/TELEGRAM_BOT.md -------------------------------------------------------------------------------- /docs/TELEGRAM_ORDER_ALERTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/TELEGRAM_ORDER_ALERTS.md -------------------------------------------------------------------------------- /docs/TELEGRAM_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/TELEGRAM_SETUP.md -------------------------------------------------------------------------------- /docs/WEBSOCKET_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/WEBSOCKET_FIX.md -------------------------------------------------------------------------------- /docs/WEBSOCKET_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/WEBSOCKET_OPTIMIZATION.md -------------------------------------------------------------------------------- /docs/ZMQ_AUDIT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/ZMQ_AUDIT_REPORT.md -------------------------------------------------------------------------------- /docs/architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/architecture-diagram.png -------------------------------------------------------------------------------- /docs/audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/audit.md -------------------------------------------------------------------------------- /docs/broker_factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/broker_factory.md -------------------------------------------------------------------------------- /docs/chartink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/chartink.md -------------------------------------------------------------------------------- /docs/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/data.md -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/docker_env_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/docker_env_changes.md -------------------------------------------------------------------------------- /docs/expiry_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/expiry_api.md -------------------------------------------------------------------------------- /docs/gocharting_webhook_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/gocharting_webhook_setup.md -------------------------------------------------------------------------------- /docs/httpx_client_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/httpx_client_documentation.md -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/multiquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/multiquotes.md -------------------------------------------------------------------------------- /docs/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/playground.md -------------------------------------------------------------------------------- /docs/pnltracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/pnltracker.md -------------------------------------------------------------------------------- /docs/prompt/openalgosdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/prompt/openalgosdk.md -------------------------------------------------------------------------------- /docs/prompt/order-constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/prompt/order-constants.md -------------------------------------------------------------------------------- /docs/prompt/sandbox_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/prompt/sandbox_mode.md -------------------------------------------------------------------------------- /docs/prompt/services_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/prompt/services_documentation.md -------------------------------------------------------------------------------- /docs/prompt/symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/prompt/symbols.md -------------------------------------------------------------------------------- /docs/prompt/websockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/prompt/websockets.md -------------------------------------------------------------------------------- /docs/python_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/python_sdk.md -------------------------------------------------------------------------------- /docs/python_strategies/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/python_strategies/CHANGELOG.md -------------------------------------------------------------------------------- /docs/python_strategies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/python_strategies/README.md -------------------------------------------------------------------------------- /docs/python_strategies/editor-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/python_strategies/editor-guide.md -------------------------------------------------------------------------------- /docs/python_strategies/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/python_strategies/index.md -------------------------------------------------------------------------------- /docs/raspberrypi_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/raspberrypi_setup.md -------------------------------------------------------------------------------- /docs/rate_limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rate_limiting.md -------------------------------------------------------------------------------- /docs/report_security_audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/report_security_audit.md -------------------------------------------------------------------------------- /docs/rust/00-PRODUCT-DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/00-PRODUCT-DESIGN.md -------------------------------------------------------------------------------- /docs/rust/01-ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/01-ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/rust/02-DATABASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/02-DATABASE.md -------------------------------------------------------------------------------- /docs/rust/03-TAURI-COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/03-TAURI-COMMANDS.md -------------------------------------------------------------------------------- /docs/rust/04-FRONTEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/04-FRONTEND.md -------------------------------------------------------------------------------- /docs/rust/05-BROKER-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/05-BROKER-INTEGRATION.md -------------------------------------------------------------------------------- /docs/rust/06-ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/06-ROADMAP.md -------------------------------------------------------------------------------- /docs/rust/07-REST-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/07-REST-API.md -------------------------------------------------------------------------------- /docs/rust/08-WEBSOCKET-STREAMING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/08-WEBSOCKET-STREAMING.md -------------------------------------------------------------------------------- /docs/rust/09-SANDBOX-MODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/09-SANDBOX-MODE.md -------------------------------------------------------------------------------- /docs/rust/10-ACTION-CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/10-ACTION-CENTER.md -------------------------------------------------------------------------------- /docs/rust/11-TELEGRAM-BOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/11-TELEGRAM-BOT.md -------------------------------------------------------------------------------- /docs/rust/12-SERVICES-LAYER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/12-SERVICES-LAYER.md -------------------------------------------------------------------------------- /docs/rust/13-CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/13-CONFIGURATION.md -------------------------------------------------------------------------------- /docs/rust/14-LOGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/14-LOGGING.md -------------------------------------------------------------------------------- /docs/rust/15-EXTERNAL-WEBHOOKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/15-EXTERNAL-WEBHOOKS.md -------------------------------------------------------------------------------- /docs/rust/16-WEBHOOK-PLATFORMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/16-WEBHOOK-PLATFORMS.md -------------------------------------------------------------------------------- /docs/rust/18-SDK-COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/18-SDK-COMPATIBILITY.md -------------------------------------------------------------------------------- /docs/rust/19-SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/19-SECURITY.md -------------------------------------------------------------------------------- /docs/rust/20-API-REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/20-API-REFERENCE.md -------------------------------------------------------------------------------- /docs/rust/21-MONITORING-DASHBOARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/21-MONITORING-DASHBOARDS.md -------------------------------------------------------------------------------- /docs/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/rust/README.md -------------------------------------------------------------------------------- /docs/sandbox/01_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/01_overview.md -------------------------------------------------------------------------------- /docs/sandbox/02_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/02_getting_started.md -------------------------------------------------------------------------------- /docs/sandbox/03_order_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/03_order_management.md -------------------------------------------------------------------------------- /docs/sandbox/04_margin_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/04_margin_system.md -------------------------------------------------------------------------------- /docs/sandbox/05_position_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/05_position_management.md -------------------------------------------------------------------------------- /docs/sandbox/06_auto_squareoff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/06_auto_squareoff.md -------------------------------------------------------------------------------- /docs/sandbox/07_database_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/07_database_schema.md -------------------------------------------------------------------------------- /docs/sandbox/08_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/08_architecture.md -------------------------------------------------------------------------------- /docs/sandbox/09_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/09_configuration.md -------------------------------------------------------------------------------- /docs/sandbox/10_api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/10_api_reference.md -------------------------------------------------------------------------------- /docs/sandbox/11_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/11_troubleshooting.md -------------------------------------------------------------------------------- /docs/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/sandbox/README.md -------------------------------------------------------------------------------- /docs/search_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/search_api.md -------------------------------------------------------------------------------- /docs/security/security-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/security/security-features.md -------------------------------------------------------------------------------- /docs/security_audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/security_audit.md -------------------------------------------------------------------------------- /docs/strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/strategy.md -------------------------------------------------------------------------------- /docs/ticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/ticker.md -------------------------------------------------------------------------------- /docs/traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/traffic.md -------------------------------------------------------------------------------- /docs/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/websocket.md -------------------------------------------------------------------------------- /docs/websocket_angel_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/websocket_angel_docs.md -------------------------------------------------------------------------------- /docs/websocket_auth_and_mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/websocket_auth_and_mapping.md -------------------------------------------------------------------------------- /docs/websocket_design_assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/websocket_design_assessment.md -------------------------------------------------------------------------------- /docs/websocket_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/websocket_implementation.md -------------------------------------------------------------------------------- /docs/websocket_usage_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/websocket_usage_example.md -------------------------------------------------------------------------------- /docs/xtsapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/docs/xtsapi.md -------------------------------------------------------------------------------- /download/.sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/download/.sample.env -------------------------------------------------------------------------------- /download/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/download/README.md -------------------------------------------------------------------------------- /download/duckdb_downloader.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /download/ieod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/download/ieod.py -------------------------------------------------------------------------------- /download/sqlite_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/download/sqlite_downloader.py -------------------------------------------------------------------------------- /download/symbols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/download/symbols.csv -------------------------------------------------------------------------------- /examples/go/readme.md: -------------------------------------------------------------------------------- 1 | OpenAlgo Go SDK Examples -------------------------------------------------------------------------------- /examples/nodejs/readme.md: -------------------------------------------------------------------------------- 1 | OpenAlgo Nodejs SDK Examples -------------------------------------------------------------------------------- /examples/python/NiftyOI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/NiftyOI.ipynb -------------------------------------------------------------------------------- /examples/python/data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/data.ipynb -------------------------------------------------------------------------------- /examples/python/depth_20_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/depth_20_example.py -------------------------------------------------------------------------------- /examples/python/depth_50_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/depth_50_example.py -------------------------------------------------------------------------------- /examples/python/depth_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/depth_example.py -------------------------------------------------------------------------------- /examples/python/ema_crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/ema_crossover.py -------------------------------------------------------------------------------- /examples/python/flask_optionchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/flask_optionchain.py -------------------------------------------------------------------------------- /examples/python/ltp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/ltp_example.py -------------------------------------------------------------------------------- /examples/python/margin_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/margin_example.ipynb -------------------------------------------------------------------------------- /examples/python/multiquotes_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/multiquotes_example.py -------------------------------------------------------------------------------- /examples/python/optionchain_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/optionchain_example.py -------------------------------------------------------------------------------- /examples/python/placing ATM order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/placing ATM order.py -------------------------------------------------------------------------------- /examples/python/quote_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/quote_example.py -------------------------------------------------------------------------------- /examples/python/stoploss_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/stoploss_example.py -------------------------------------------------------------------------------- /examples/python/straddle_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/straddle_scheduler.py -------------------------------------------------------------------------------- /examples/python/straddle_with_stops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/straddle_with_stops.py -------------------------------------------------------------------------------- /examples/python/supertrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/supertrend.py -------------------------------------------------------------------------------- /examples/python/webhook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/examples/python/webhook.ipynb -------------------------------------------------------------------------------- /extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/extensions.py -------------------------------------------------------------------------------- /install/Docker-install-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/install/Docker-install-readme.md -------------------------------------------------------------------------------- /install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/install/README.md -------------------------------------------------------------------------------- /install/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/install/install-docker.sh -------------------------------------------------------------------------------- /install/install-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/install/install-multi.sh -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/install/install.sh -------------------------------------------------------------------------------- /install/ubuntu-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/install/ubuntu-ip.sh -------------------------------------------------------------------------------- /keys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/keys/.gitignore -------------------------------------------------------------------------------- /limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/limiter.py -------------------------------------------------------------------------------- /log/readme.md: -------------------------------------------------------------------------------- 1 | This is a Log Folder -------------------------------------------------------------------------------- /log/strategies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/log/strategies/.gitignore -------------------------------------------------------------------------------- /mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/mcp/README.md -------------------------------------------------------------------------------- /mcp/mcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/mcp/mcpserver.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/package.json -------------------------------------------------------------------------------- /playground/Nifty_OI_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/Nifty_OI_profile.html -------------------------------------------------------------------------------- /playground/Nifty_OI_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/Nifty_OI_profile.md -------------------------------------------------------------------------------- /playground/Playground-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/Playground-screenshot.png -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/script.js -------------------------------------------------------------------------------- /playground/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/playground/style.css -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-nginx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/requirements-nginx.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/requirements.txt -------------------------------------------------------------------------------- /restx_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/__init__.py -------------------------------------------------------------------------------- /restx_api/account_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/account_schema.py -------------------------------------------------------------------------------- /restx_api/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/analyzer.py -------------------------------------------------------------------------------- /restx_api/basket_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/basket_order.py -------------------------------------------------------------------------------- /restx_api/cancel_all_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/cancel_all_order.py -------------------------------------------------------------------------------- /restx_api/cancel_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/cancel_order.py -------------------------------------------------------------------------------- /restx_api/close_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/close_position.py -------------------------------------------------------------------------------- /restx_api/data_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/data_schemas.py -------------------------------------------------------------------------------- /restx_api/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/depth.py -------------------------------------------------------------------------------- /restx_api/expiry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/expiry.py -------------------------------------------------------------------------------- /restx_api/funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/funds.py -------------------------------------------------------------------------------- /restx_api/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/history.py -------------------------------------------------------------------------------- /restx_api/holdings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/holdings.py -------------------------------------------------------------------------------- /restx_api/instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/instruments.py -------------------------------------------------------------------------------- /restx_api/intervals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/intervals.py -------------------------------------------------------------------------------- /restx_api/margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/margin.py -------------------------------------------------------------------------------- /restx_api/modify_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/modify_order.py -------------------------------------------------------------------------------- /restx_api/multiquotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/multiquotes.py -------------------------------------------------------------------------------- /restx_api/openposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/openposition.py -------------------------------------------------------------------------------- /restx_api/option_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/option_chain.py -------------------------------------------------------------------------------- /restx_api/option_greeks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/option_greeks.py -------------------------------------------------------------------------------- /restx_api/option_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/option_symbol.py -------------------------------------------------------------------------------- /restx_api/options_multiorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/options_multiorder.py -------------------------------------------------------------------------------- /restx_api/options_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/options_order.py -------------------------------------------------------------------------------- /restx_api/orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/orderbook.py -------------------------------------------------------------------------------- /restx_api/orderstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/orderstatus.py -------------------------------------------------------------------------------- /restx_api/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/ping.py -------------------------------------------------------------------------------- /restx_api/place_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/place_order.py -------------------------------------------------------------------------------- /restx_api/place_smart_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/place_smart_order.py -------------------------------------------------------------------------------- /restx_api/positionbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/positionbook.py -------------------------------------------------------------------------------- /restx_api/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/quotes.py -------------------------------------------------------------------------------- /restx_api/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/schemas.py -------------------------------------------------------------------------------- /restx_api/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/search.py -------------------------------------------------------------------------------- /restx_api/split_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/split_order.py -------------------------------------------------------------------------------- /restx_api/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/symbol.py -------------------------------------------------------------------------------- /restx_api/synthetic_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/synthetic_future.py -------------------------------------------------------------------------------- /restx_api/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/telegram_bot.py -------------------------------------------------------------------------------- /restx_api/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/ticker.py -------------------------------------------------------------------------------- /restx_api/tradebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/restx_api/tradebook.py -------------------------------------------------------------------------------- /sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/__init__.py -------------------------------------------------------------------------------- /sandbox/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/execution_engine.py -------------------------------------------------------------------------------- /sandbox/execution_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/execution_thread.py -------------------------------------------------------------------------------- /sandbox/fund_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/fund_manager.py -------------------------------------------------------------------------------- /sandbox/holdings_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/holdings_manager.py -------------------------------------------------------------------------------- /sandbox/order_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/order_manager.py -------------------------------------------------------------------------------- /sandbox/position_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/position_manager.py -------------------------------------------------------------------------------- /sandbox/squareoff_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/squareoff_manager.py -------------------------------------------------------------------------------- /sandbox/squareoff_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/sandbox/squareoff_thread.py -------------------------------------------------------------------------------- /services/action_center_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/action_center_service.py -------------------------------------------------------------------------------- /services/analyzer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/analyzer_service.py -------------------------------------------------------------------------------- /services/basket_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/basket_order_service.py -------------------------------------------------------------------------------- /services/cancel_all_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/cancel_all_order_service.py -------------------------------------------------------------------------------- /services/cancel_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/cancel_order_service.py -------------------------------------------------------------------------------- /services/close_position_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/close_position_service.py -------------------------------------------------------------------------------- /services/depth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/depth_service.py -------------------------------------------------------------------------------- /services/expiry_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/expiry_service.py -------------------------------------------------------------------------------- /services/funds_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/funds_service.py -------------------------------------------------------------------------------- /services/history_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/history_service.py -------------------------------------------------------------------------------- /services/holdings_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/holdings_service.py -------------------------------------------------------------------------------- /services/instruments_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/instruments_service.py -------------------------------------------------------------------------------- /services/intervals_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/intervals_service.py -------------------------------------------------------------------------------- /services/margin_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/margin_service.py -------------------------------------------------------------------------------- /services/market_data_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/market_data_service.py -------------------------------------------------------------------------------- /services/modify_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/modify_order_service.py -------------------------------------------------------------------------------- /services/openposition_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/openposition_service.py -------------------------------------------------------------------------------- /services/option_chain_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/option_chain_service.py -------------------------------------------------------------------------------- /services/option_greeks_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/option_greeks_service.py -------------------------------------------------------------------------------- /services/option_symbol_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/option_symbol_service.py -------------------------------------------------------------------------------- /services/options_multiorder_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/options_multiorder_service.py -------------------------------------------------------------------------------- /services/order_router_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/order_router_service.py -------------------------------------------------------------------------------- /services/orderbook_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/orderbook_service.py -------------------------------------------------------------------------------- /services/orderstatus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/orderstatus_service.py -------------------------------------------------------------------------------- /services/ping_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/ping_service.py -------------------------------------------------------------------------------- /services/place_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/place_order_service.py -------------------------------------------------------------------------------- /services/place_smart_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/place_smart_order_service.py -------------------------------------------------------------------------------- /services/positionbook_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/positionbook_service.py -------------------------------------------------------------------------------- /services/quotes_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/quotes_service.py -------------------------------------------------------------------------------- /services/sandbox_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/sandbox_service.py -------------------------------------------------------------------------------- /services/search_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/search_service.py -------------------------------------------------------------------------------- /services/split_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/split_order_service.py -------------------------------------------------------------------------------- /services/symbol_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/symbol_service.py -------------------------------------------------------------------------------- /services/synthetic_future_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/synthetic_future_service.py -------------------------------------------------------------------------------- /services/telegram_alert_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/telegram_alert_service.py -------------------------------------------------------------------------------- /services/telegram_bot_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/telegram_bot_service.py -------------------------------------------------------------------------------- /services/telegram_bot_service_fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/telegram_bot_service_fixed.py -------------------------------------------------------------------------------- /services/telegram_bot_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/telegram_bot_service_v2.py -------------------------------------------------------------------------------- /services/tradebook_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/tradebook_service.py -------------------------------------------------------------------------------- /services/websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/websocket_client.py -------------------------------------------------------------------------------- /services/websocket_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/services/websocket_service.py -------------------------------------------------------------------------------- /src/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/src/css/styles.css -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/start.sh -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/css/prism.css -------------------------------------------------------------------------------- /static/css/python-editor-simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/css/python-editor-simple.css -------------------------------------------------------------------------------- /static/css/python-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/css/python-editor.css -------------------------------------------------------------------------------- /static/css/tradingview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/css/tradingview.css -------------------------------------------------------------------------------- /static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/browserconfig.xml -------------------------------------------------------------------------------- /static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/favicon.ico -------------------------------------------------------------------------------- /static/favicon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/logo.png -------------------------------------------------------------------------------- /static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /static/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/favicon/site.webmanifest -------------------------------------------------------------------------------- /static/images/brokers/5paisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/5paisa.png -------------------------------------------------------------------------------- /static/images/brokers/aliceblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/aliceblue.png -------------------------------------------------------------------------------- /static/images/brokers/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/angel.png -------------------------------------------------------------------------------- /static/images/brokers/dhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/dhan.png -------------------------------------------------------------------------------- /static/images/brokers/fyers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/fyers.png -------------------------------------------------------------------------------- /static/images/brokers/icici.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/icici.png -------------------------------------------------------------------------------- /static/images/brokers/kotak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/kotak.png -------------------------------------------------------------------------------- /static/images/brokers/upstox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/upstox.png -------------------------------------------------------------------------------- /static/images/brokers/zerodha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/brokers/zerodha.png -------------------------------------------------------------------------------- /static/images/copy-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/copy-icon.png -------------------------------------------------------------------------------- /static/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/image.png -------------------------------------------------------------------------------- /static/images/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/thumbs-up.png -------------------------------------------------------------------------------- /static/images/yoga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/images/yoga.png -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/chart.min.js -------------------------------------------------------------------------------- /static/js/codemirror-python-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/codemirror-python-bundle.js -------------------------------------------------------------------------------- /static/js/gocharting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/gocharting.js -------------------------------------------------------------------------------- /static/js/html2canvas-oklch-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/html2canvas-oklch-fix.js -------------------------------------------------------------------------------- /static/js/mobile-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/mobile-menu.js -------------------------------------------------------------------------------- /static/js/mode-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/mode-toggle.js -------------------------------------------------------------------------------- /static/js/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/playground.js -------------------------------------------------------------------------------- /static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/prism.js -------------------------------------------------------------------------------- /static/js/python-editor-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/python-editor-simple.js -------------------------------------------------------------------------------- /static/js/socket-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/socket-events.js -------------------------------------------------------------------------------- /static/js/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/socket.io.min.js -------------------------------------------------------------------------------- /static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/theme.js -------------------------------------------------------------------------------- /static/js/tradingview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/js/tradingview.js -------------------------------------------------------------------------------- /static/sounds/alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/static/sounds/alert.mp3 -------------------------------------------------------------------------------- /strategies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/strategies/.gitignore -------------------------------------------------------------------------------- /strategies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/strategies/README.md -------------------------------------------------------------------------------- /strategies/scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/strategies/scripts/.gitignore -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/5paisa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/5paisa.html -------------------------------------------------------------------------------- /templates/action_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/action_center.html -------------------------------------------------------------------------------- /templates/aliceblue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/aliceblue.html -------------------------------------------------------------------------------- /templates/analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/analyzer.html -------------------------------------------------------------------------------- /templates/angel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/angel.html -------------------------------------------------------------------------------- /templates/apikey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/apikey.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/broker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/broker.html -------------------------------------------------------------------------------- /templates/chartink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/chartink/index.html -------------------------------------------------------------------------------- /templates/chartink/new_strategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/chartink/new_strategy.html -------------------------------------------------------------------------------- /templates/chartink/view_strategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/chartink/view_strategy.html -------------------------------------------------------------------------------- /templates/components/log_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/components/log_entry.html -------------------------------------------------------------------------------- /templates/components/logs_filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/components/logs_filters.html -------------------------------------------------------------------------------- /templates/components/logs_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/components/logs_scripts.html -------------------------------------------------------------------------------- /templates/components/logs_styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/components/logs_styles.html -------------------------------------------------------------------------------- /templates/components/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/components/pagination.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/definedgeotp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/definedgeotp.html -------------------------------------------------------------------------------- /templates/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/download.html -------------------------------------------------------------------------------- /templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/faq.html -------------------------------------------------------------------------------- /templates/firstock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/firstock.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/gocharting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/gocharting.html -------------------------------------------------------------------------------- /templates/holdings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/holdings.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/kotak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/kotak.html -------------------------------------------------------------------------------- /templates/latency/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/latency/dashboard.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/logs.html -------------------------------------------------------------------------------- /templates/motilal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/motilal.html -------------------------------------------------------------------------------- /templates/mstock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/mstock.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/orderbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/orderbook.html -------------------------------------------------------------------------------- /templates/platforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/platforms.html -------------------------------------------------------------------------------- /templates/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/playground.html -------------------------------------------------------------------------------- /templates/pnltracker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/pnltracker.html -------------------------------------------------------------------------------- /templates/positions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/positions.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/public_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/public_navbar.html -------------------------------------------------------------------------------- /templates/python_strategy/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/python_strategy/edit.html -------------------------------------------------------------------------------- /templates/python_strategy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/python_strategy/index.html -------------------------------------------------------------------------------- /templates/python_strategy/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/python_strategy/logs.html -------------------------------------------------------------------------------- /templates/python_strategy/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/python_strategy/new.html -------------------------------------------------------------------------------- /templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/reset_password.html -------------------------------------------------------------------------------- /templates/samco.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/samco.html -------------------------------------------------------------------------------- /templates/sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/sandbox.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/security/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/security/dashboard.html -------------------------------------------------------------------------------- /templates/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/setup.html -------------------------------------------------------------------------------- /templates/shoonya.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/shoonya.html -------------------------------------------------------------------------------- /templates/strategy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/strategy/index.html -------------------------------------------------------------------------------- /templates/strategy/new_strategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/strategy/new_strategy.html -------------------------------------------------------------------------------- /templates/strategy/view_strategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/strategy/view_strategy.html -------------------------------------------------------------------------------- /templates/telegram/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/telegram/analytics.html -------------------------------------------------------------------------------- /templates/telegram/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/telegram/config.html -------------------------------------------------------------------------------- /templates/telegram/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/telegram/index.html -------------------------------------------------------------------------------- /templates/telegram/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/telegram/users.html -------------------------------------------------------------------------------- /templates/token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/token.html -------------------------------------------------------------------------------- /templates/tradebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/tradebook.html -------------------------------------------------------------------------------- /templates/tradejini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/tradejini.html -------------------------------------------------------------------------------- /templates/tradingview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/tradingview.html -------------------------------------------------------------------------------- /templates/traffic/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/traffic/dashboard.html -------------------------------------------------------------------------------- /templates/zebu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/templates/zebu.html -------------------------------------------------------------------------------- /test/README_OPTION_GREEKS_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/README_OPTION_GREEKS_TESTS.md -------------------------------------------------------------------------------- /test/README_OPTION_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/README_OPTION_TESTS.md -------------------------------------------------------------------------------- /test/README_TELEGRAM_ALERT_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/README_TELEGRAM_ALERT_TESTS.md -------------------------------------------------------------------------------- /test/all_symbols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/all_symbols.csv -------------------------------------------------------------------------------- /test/debug_telegram_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/debug_telegram_link.py -------------------------------------------------------------------------------- /test/iteration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/iteration_test.py -------------------------------------------------------------------------------- /test/ltp_example_test_1800 symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/ltp_example_test_1800 symbols.py -------------------------------------------------------------------------------- /test/ltp_test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/ltp_test_report.py -------------------------------------------------------------------------------- /test/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/sandbox/README.md -------------------------------------------------------------------------------- /test/sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/sandbox/__init__.py -------------------------------------------------------------------------------- /test/sandbox/test_fund_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/sandbox/test_fund_manager.py -------------------------------------------------------------------------------- /test/sandbox/test_margin_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/sandbox/test_margin_scenarios.py -------------------------------------------------------------------------------- /test/sandbox/test_orderbook_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/sandbox/test_orderbook_api.py -------------------------------------------------------------------------------- /test/sandbox/test_rejected_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/sandbox/test_rejected_order.py -------------------------------------------------------------------------------- /test/simple_depth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/simple_depth_test.py -------------------------------------------------------------------------------- /test/simple_ltp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/simple_ltp_test.py -------------------------------------------------------------------------------- /test/simple_quote_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/simple_quote_test.py -------------------------------------------------------------------------------- /test/symbols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/symbols.csv -------------------------------------------------------------------------------- /test/test_action_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_action_center.py -------------------------------------------------------------------------------- /test/test_all_order_types_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_all_order_types_execution.py -------------------------------------------------------------------------------- /test/test_approve_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_approve_orders.py -------------------------------------------------------------------------------- /test/test_bot_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_bot_web.py -------------------------------------------------------------------------------- /test/test_broadcast_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_broadcast_save.py -------------------------------------------------------------------------------- /test/test_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_broker.py -------------------------------------------------------------------------------- /test/test_broker_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_broker_protocol.py -------------------------------------------------------------------------------- /test/test_cache_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_cache_compatibility.py -------------------------------------------------------------------------------- /test/test_cache_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_cache_performance.py -------------------------------------------------------------------------------- /test/test_clear_action_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_clear_action_center.py -------------------------------------------------------------------------------- /test/test_csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_csrf.py -------------------------------------------------------------------------------- /test/test_email_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_email_functionality.py -------------------------------------------------------------------------------- /test/test_flattrade_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_flattrade_protocol.py -------------------------------------------------------------------------------- /test/test_history_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_history_format.py -------------------------------------------------------------------------------- /test/test_http_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_http_protocol.py -------------------------------------------------------------------------------- /test/test_log_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_log_location.py -------------------------------------------------------------------------------- /test/test_logout_csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_logout_csrf.py -------------------------------------------------------------------------------- /test/test_mstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_mstock.py -------------------------------------------------------------------------------- /test/test_navigation_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_navigation_update.py -------------------------------------------------------------------------------- /test/test_option_greeks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_option_greeks_api.py -------------------------------------------------------------------------------- /test/test_option_symbol_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_option_symbol_api.py -------------------------------------------------------------------------------- /test/test_options_multiorder_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_options_multiorder_api.py -------------------------------------------------------------------------------- /test/test_options_order_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_options_order_api.py -------------------------------------------------------------------------------- /test/test_python_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_python_editor.py -------------------------------------------------------------------------------- /test/test_rate_limits_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_rate_limits_mock.py -------------------------------------------------------------------------------- /test/test_rate_limits_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_rate_limits_simple.py -------------------------------------------------------------------------------- /test/test_save_strategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_save_strategy.html -------------------------------------------------------------------------------- /test/test_simple_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_simple_editor.html -------------------------------------------------------------------------------- /test/test_telegram_alert_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_telegram_alert_api.py -------------------------------------------------------------------------------- /test/test_telegram_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_telegram_alerts.py -------------------------------------------------------------------------------- /test/test_telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_telegram_bot.py -------------------------------------------------------------------------------- /test/test_telegram_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_telegram_charts.py -------------------------------------------------------------------------------- /test/test_telegram_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_telegram_config.py -------------------------------------------------------------------------------- /test/test_telegram_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_telegram_startup.py -------------------------------------------------------------------------------- /test/test_tradingview_csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_tradingview_csrf.py -------------------------------------------------------------------------------- /test/test_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_websocket.py -------------------------------------------------------------------------------- /test/test_websocket_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/test/test_websocket_service.py -------------------------------------------------------------------------------- /tmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/tmp/README.md -------------------------------------------------------------------------------- /upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/README.md -------------------------------------------------------------------------------- /upgrade/add_feed_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/add_feed_token.py -------------------------------------------------------------------------------- /upgrade/add_user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/add_user_id.py -------------------------------------------------------------------------------- /upgrade/migrate_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_all.py -------------------------------------------------------------------------------- /upgrade/migrate_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_indexes.py -------------------------------------------------------------------------------- /upgrade/migrate_order_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_order_mode.py -------------------------------------------------------------------------------- /upgrade/migrate_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_sandbox.py -------------------------------------------------------------------------------- /upgrade/migrate_security_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_security_columns.py -------------------------------------------------------------------------------- /upgrade/migrate_smtp_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_smtp_simple.py -------------------------------------------------------------------------------- /upgrade/migrate_telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/upgrade/migrate_telegram_bot.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/api_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/api_analyzer.py -------------------------------------------------------------------------------- /utils/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/auth_utils.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/constants.py -------------------------------------------------------------------------------- /utils/email_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/email_debug.py -------------------------------------------------------------------------------- /utils/email_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/email_utils.py -------------------------------------------------------------------------------- /utils/env_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/env_check.py -------------------------------------------------------------------------------- /utils/httpx_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/httpx_client.py -------------------------------------------------------------------------------- /utils/ip_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/ip_helper.py -------------------------------------------------------------------------------- /utils/latency_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/latency_monitor.py -------------------------------------------------------------------------------- /utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/logging.py -------------------------------------------------------------------------------- /utils/number_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/number_formatter.py -------------------------------------------------------------------------------- /utils/plugin_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/plugin_loader.py -------------------------------------------------------------------------------- /utils/security_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/security_middleware.py -------------------------------------------------------------------------------- /utils/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/session.py -------------------------------------------------------------------------------- /utils/socketio_error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/socketio_error_handler.py -------------------------------------------------------------------------------- /utils/traffic_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/traffic_logger.py -------------------------------------------------------------------------------- /utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/utils/version.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/uv.lock -------------------------------------------------------------------------------- /websocket_proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/__init__.py -------------------------------------------------------------------------------- /websocket_proxy/app_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/app_integration.py -------------------------------------------------------------------------------- /websocket_proxy/base_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/base_adapter.py -------------------------------------------------------------------------------- /websocket_proxy/broker_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/broker_factory.py -------------------------------------------------------------------------------- /websocket_proxy/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/mapping.py -------------------------------------------------------------------------------- /websocket_proxy/port_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/port_check.py -------------------------------------------------------------------------------- /websocket_proxy/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marketcalls/openalgo/HEAD/websocket_proxy/server.py --------------------------------------------------------------------------------