├── .gitignore ├── README.md └── src ├── docs ├── accredited_investor.md ├── algorithmic_trading.md ├── api_protocols.md ├── cases.md ├── common.md ├── contracts │ ├── common.proto │ ├── instruments.proto │ ├── marketdata.proto │ ├── operations.proto │ ├── orders.proto │ ├── sandbox.proto │ ├── stoporders.proto │ └── users.proto ├── deadlines.md ├── eol_v1.md ├── errors.md ├── errors │ └── api_errors.json ├── example.md ├── faq.md ├── faq_corp_action.md ├── faq_csharp.md ├── faq_custom_types.md ├── faq_golang.md ├── faq_identification.md ├── faq_instruments.md ├── faq_java.md ├── faq_marketdata.md ├── faq_multiaccounts.md ├── faq_operations.md ├── faq_orders.md ├── faq_python.md ├── faq_rules.md ├── faq_sandbox.md ├── faq_stoporders.md ├── faq_trading_status.md ├── faq_users.md ├── get_history.md ├── glossary.md ├── grpc.md ├── head-instruments.md ├── head-marketdata.md ├── head-operations.md ├── head-orders.md ├── head-sandbox.md ├── head-stoporders.md ├── head-users.md ├── img │ ├── Auth_swagger.png │ ├── Auth_swagger1.png │ ├── Bloom-1.png │ ├── Bloom-2.png │ ├── Bloom-3.png │ ├── Bloom-4.png │ ├── Kreya-1.png │ ├── Kreya-2.png │ ├── Kreya-3.png │ ├── Kreya-4.png │ ├── Kreya-5.png │ ├── Kreya-6.png │ ├── Swagger_try.png │ ├── Swagger_try2.png │ ├── alligator.png │ ├── lrc.png │ ├── ma.png │ ├── order_status_diagram.png │ ├── response_swagger.png │ ├── response_swagger2.png │ └── rsi.png ├── index.md ├── instruments.md ├── limits.md ├── load_history.md ├── marketdata.md ├── markets.md ├── more-instrument.md ├── operations.md ├── operations_problems.md ├── orders.md ├── orders_details.md ├── points.md ├── robot_contest.md ├── sandbox.md ├── sla.md ├── speedup.md ├── stoporders.md ├── swagger-ui │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.html │ ├── openapi.yaml │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ └── swagger-ui.css.map ├── swagger.md ├── table_order_currency.md ├── tech_indicators.md ├── token.md ├── url_difference.md ├── users.md └── ws │ ├── README.md │ ├── asyncapi.yaml │ ├── index.html │ ├── websock-docs │ └── output │ │ ├── css │ │ ├── asyncapi.min.css │ │ └── global.min.css │ │ ├── index.html │ │ ├── inject-ws.js │ │ └── js │ │ └── asyncapi-ui.min.js │ ├── websock │ ├── draft-asyncapi.yaml │ ├── index.html │ ├── store.js │ └── wsockview.js │ └── ws-instruments │ ├── index.html │ └── instruments.js ├── marketdata ├── download_md.sh └── figi.txt ├── mkdocs.yml └── overrides ├── main.html └── partials └── main.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | site -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/README.md -------------------------------------------------------------------------------- /src/docs/accredited_investor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/accredited_investor.md -------------------------------------------------------------------------------- /src/docs/algorithmic_trading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/algorithmic_trading.md -------------------------------------------------------------------------------- /src/docs/api_protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/api_protocols.md -------------------------------------------------------------------------------- /src/docs/cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/cases.md -------------------------------------------------------------------------------- /src/docs/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/common.md -------------------------------------------------------------------------------- /src/docs/contracts/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/common.proto -------------------------------------------------------------------------------- /src/docs/contracts/instruments.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/instruments.proto -------------------------------------------------------------------------------- /src/docs/contracts/marketdata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/marketdata.proto -------------------------------------------------------------------------------- /src/docs/contracts/operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/operations.proto -------------------------------------------------------------------------------- /src/docs/contracts/orders.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/orders.proto -------------------------------------------------------------------------------- /src/docs/contracts/sandbox.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/sandbox.proto -------------------------------------------------------------------------------- /src/docs/contracts/stoporders.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/stoporders.proto -------------------------------------------------------------------------------- /src/docs/contracts/users.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/contracts/users.proto -------------------------------------------------------------------------------- /src/docs/deadlines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/deadlines.md -------------------------------------------------------------------------------- /src/docs/eol_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/eol_v1.md -------------------------------------------------------------------------------- /src/docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/errors.md -------------------------------------------------------------------------------- /src/docs/errors/api_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/errors/api_errors.json -------------------------------------------------------------------------------- /src/docs/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/example.md -------------------------------------------------------------------------------- /src/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq.md -------------------------------------------------------------------------------- /src/docs/faq_corp_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_corp_action.md -------------------------------------------------------------------------------- /src/docs/faq_csharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_csharp.md -------------------------------------------------------------------------------- /src/docs/faq_custom_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_custom_types.md -------------------------------------------------------------------------------- /src/docs/faq_golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_golang.md -------------------------------------------------------------------------------- /src/docs/faq_identification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_identification.md -------------------------------------------------------------------------------- /src/docs/faq_instruments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_instruments.md -------------------------------------------------------------------------------- /src/docs/faq_java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_java.md -------------------------------------------------------------------------------- /src/docs/faq_marketdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_marketdata.md -------------------------------------------------------------------------------- /src/docs/faq_multiaccounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_multiaccounts.md -------------------------------------------------------------------------------- /src/docs/faq_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_operations.md -------------------------------------------------------------------------------- /src/docs/faq_orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_orders.md -------------------------------------------------------------------------------- /src/docs/faq_python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_python.md -------------------------------------------------------------------------------- /src/docs/faq_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_rules.md -------------------------------------------------------------------------------- /src/docs/faq_sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_sandbox.md -------------------------------------------------------------------------------- /src/docs/faq_stoporders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_stoporders.md -------------------------------------------------------------------------------- /src/docs/faq_trading_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_trading_status.md -------------------------------------------------------------------------------- /src/docs/faq_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/faq_users.md -------------------------------------------------------------------------------- /src/docs/get_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/get_history.md -------------------------------------------------------------------------------- /src/docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/glossary.md -------------------------------------------------------------------------------- /src/docs/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/grpc.md -------------------------------------------------------------------------------- /src/docs/head-instruments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-instruments.md -------------------------------------------------------------------------------- /src/docs/head-marketdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-marketdata.md -------------------------------------------------------------------------------- /src/docs/head-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-operations.md -------------------------------------------------------------------------------- /src/docs/head-orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-orders.md -------------------------------------------------------------------------------- /src/docs/head-sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-sandbox.md -------------------------------------------------------------------------------- /src/docs/head-stoporders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-stoporders.md -------------------------------------------------------------------------------- /src/docs/head-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/head-users.md -------------------------------------------------------------------------------- /src/docs/img/Auth_swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Auth_swagger.png -------------------------------------------------------------------------------- /src/docs/img/Auth_swagger1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Auth_swagger1.png -------------------------------------------------------------------------------- /src/docs/img/Bloom-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Bloom-1.png -------------------------------------------------------------------------------- /src/docs/img/Bloom-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Bloom-2.png -------------------------------------------------------------------------------- /src/docs/img/Bloom-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Bloom-3.png -------------------------------------------------------------------------------- /src/docs/img/Bloom-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Bloom-4.png -------------------------------------------------------------------------------- /src/docs/img/Kreya-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Kreya-1.png -------------------------------------------------------------------------------- /src/docs/img/Kreya-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Kreya-2.png -------------------------------------------------------------------------------- /src/docs/img/Kreya-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Kreya-3.png -------------------------------------------------------------------------------- /src/docs/img/Kreya-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Kreya-4.png -------------------------------------------------------------------------------- /src/docs/img/Kreya-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Kreya-5.png -------------------------------------------------------------------------------- /src/docs/img/Kreya-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Kreya-6.png -------------------------------------------------------------------------------- /src/docs/img/Swagger_try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Swagger_try.png -------------------------------------------------------------------------------- /src/docs/img/Swagger_try2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/Swagger_try2.png -------------------------------------------------------------------------------- /src/docs/img/alligator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/alligator.png -------------------------------------------------------------------------------- /src/docs/img/lrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/lrc.png -------------------------------------------------------------------------------- /src/docs/img/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/ma.png -------------------------------------------------------------------------------- /src/docs/img/order_status_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/order_status_diagram.png -------------------------------------------------------------------------------- /src/docs/img/response_swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/response_swagger.png -------------------------------------------------------------------------------- /src/docs/img/response_swagger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/response_swagger2.png -------------------------------------------------------------------------------- /src/docs/img/rsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/img/rsi.png -------------------------------------------------------------------------------- /src/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/index.md -------------------------------------------------------------------------------- /src/docs/instruments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/instruments.md -------------------------------------------------------------------------------- /src/docs/limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/limits.md -------------------------------------------------------------------------------- /src/docs/load_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/load_history.md -------------------------------------------------------------------------------- /src/docs/marketdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/marketdata.md -------------------------------------------------------------------------------- /src/docs/markets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/markets.md -------------------------------------------------------------------------------- /src/docs/more-instrument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/more-instrument.md -------------------------------------------------------------------------------- /src/docs/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/operations.md -------------------------------------------------------------------------------- /src/docs/operations_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/operations_problems.md -------------------------------------------------------------------------------- /src/docs/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/orders.md -------------------------------------------------------------------------------- /src/docs/orders_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/orders_details.md -------------------------------------------------------------------------------- /src/docs/points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/points.md -------------------------------------------------------------------------------- /src/docs/robot_contest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/robot_contest.md -------------------------------------------------------------------------------- /src/docs/sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/sandbox.md -------------------------------------------------------------------------------- /src/docs/sla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/sla.md -------------------------------------------------------------------------------- /src/docs/speedup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/speedup.md -------------------------------------------------------------------------------- /src/docs/stoporders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/stoporders.md -------------------------------------------------------------------------------- /src/docs/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /src/docs/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /src/docs/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/index.html -------------------------------------------------------------------------------- /src/docs/swagger-ui/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/openapi.yaml -------------------------------------------------------------------------------- /src/docs/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /src/docs/swagger-ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /src/docs/swagger-ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /src/docs/swagger-ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /src/docs/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /src/docs/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /src/docs/swagger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/swagger.md -------------------------------------------------------------------------------- /src/docs/table_order_currency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/table_order_currency.md -------------------------------------------------------------------------------- /src/docs/tech_indicators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/tech_indicators.md -------------------------------------------------------------------------------- /src/docs/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/token.md -------------------------------------------------------------------------------- /src/docs/url_difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/url_difference.md -------------------------------------------------------------------------------- /src/docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/users.md -------------------------------------------------------------------------------- /src/docs/ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/README.md -------------------------------------------------------------------------------- /src/docs/ws/asyncapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/asyncapi.yaml -------------------------------------------------------------------------------- /src/docs/ws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/index.html -------------------------------------------------------------------------------- /src/docs/ws/websock-docs/output/css/asyncapi.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock-docs/output/css/asyncapi.min.css -------------------------------------------------------------------------------- /src/docs/ws/websock-docs/output/css/global.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock-docs/output/css/global.min.css -------------------------------------------------------------------------------- /src/docs/ws/websock-docs/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock-docs/output/index.html -------------------------------------------------------------------------------- /src/docs/ws/websock-docs/output/inject-ws.js: -------------------------------------------------------------------------------- 1 | window.addEventListener('onready', function () { 2 | 3 | }); -------------------------------------------------------------------------------- /src/docs/ws/websock-docs/output/js/asyncapi-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock-docs/output/js/asyncapi-ui.min.js -------------------------------------------------------------------------------- /src/docs/ws/websock/draft-asyncapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock/draft-asyncapi.yaml -------------------------------------------------------------------------------- /src/docs/ws/websock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock/index.html -------------------------------------------------------------------------------- /src/docs/ws/websock/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock/store.js -------------------------------------------------------------------------------- /src/docs/ws/websock/wsockview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/websock/wsockview.js -------------------------------------------------------------------------------- /src/docs/ws/ws-instruments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/ws-instruments/index.html -------------------------------------------------------------------------------- /src/docs/ws/ws-instruments/instruments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/docs/ws/ws-instruments/instruments.js -------------------------------------------------------------------------------- /src/marketdata/download_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/marketdata/download_md.sh -------------------------------------------------------------------------------- /src/marketdata/figi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/marketdata/figi.txt -------------------------------------------------------------------------------- /src/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/mkdocs.yml -------------------------------------------------------------------------------- /src/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/overrides/main.html -------------------------------------------------------------------------------- /src/overrides/partials/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/investAPI/HEAD/src/overrides/partials/main.html --------------------------------------------------------------------------------