Category: Без рубрики

MT5 manager JavaScript TypeScript grpc client from browser (Webpack)

API methods browser MT5 manager proto file You need npm be installed You need npx be installed npm install -g npx You need tsc be installed npm install typescript –save-dev You need protoc tool be installed Install protoc plugins npm install -g protoc-gen-js npm install -g protoc-gen-grpc-web You can find ready to run example here…
Read more

MT4 manager JavaScript TypeScript grpc client from browser (Webpack)

API methods browser MT4 manager proto file You need npm be installed You need npx be installed npm install -g npx You need tsc be installed npm install typescript –save-dev You need protoc tool be installed Install protoc plugins npm install -g protoc-gen-js npm install -g protoc-gen-grpc-web You can find ready to run example here…
Read more

MT4 JavaScript TypeScript grpc client from browser (Webpack)

Grpc methods browser Proto file You need npm be installed You need npx be installed npm install -g npx You need tsc be installed npm install typescript –save-dev You need protoc tool be installed Install protoc plugins npm install -g protoc-gen-js npm install -g protoc-gen-grpc-web You can find ready to run example here Run example…
Read more

MT5 JavaScript TypeScript grpc client from browser (Webpack)

Grpc methods browser MT5 proto file You need npm be installed You need npx be installed npm install -g npx You need tsc be installed npm install typescript –save-dev You need protoc tool be installed Install protoc plugins npm install -g protoc-gen-js npm install -g protoc-gen-grpc-web You can find ready to run example here. Run…
Read more

Installing MT4 gRPC API service to the microk8s Kubernetes cluster with round-robing balancing and sticky sessions

Microk8s installation: sudo apt update sudo apt install snapd sudo snap install microk8s –classic sudo usermod -a -G microk8s $USER Then you need to restart user session. After this, you can check the microk8s status: microk8s.status –wait-ready microk8s kubectl get all –all-namespaces Cert manager installation: microk8s enable cert-manager Istio installation: microk8s enable community microk8s.enable istio…
Read more

MT5 manager gRPC API dot net client example

API methods browser MT5 manager proto file Install dot net 6 SDK to run an example This example has a dynamic client libraries generation provided by grpc tools nuget. Once you run a dotnet build command, libraries would be generated in the bin/debug/net6.0 folder. You can use a reference to it in you code. Input…
Read more

MT4 manager gRPC API dot net client example

API methods browser MT4 manager proto file Install dot net 6 SDK to run an example This example has a dynamic client libraries generation provided by grpc tools nuget. Once you run a dotnet build command, libraries would be generated in the bin/debug/net6.0 folder. You can use a reference to it in you code. Input…
Read more

MT5 manager gRPC client Java example

API methods browser MT5 manager proto file Install before run an example JAVA JDK open JDK 21.0.1 is recommended MAVEN plugin Do maven clean installation with extended debug info. It generates libraries with stubs we need for method invocation. mvn clean install -X Clases were generated: If you need generated classes separately from the example…
Read more

MT4 manager gRPC client Java example

API methods browser MT4 manager proto file Install before run an example JAVA JDK open JDK 21.0.1 is recommended MAVEN plugin Do maven clean installation with extended debug info. It generates libraries with stubs we need for method invocation. mvn clean install -X Before: After. Clases were generated: If you need generated classes separately from…
Read more

MT4 manager gRPC NodeJS example

API methods browser MT4 manager proto file You need npm installed Ready to run example Run install packages installation: npm install Input your server credentials This example has a dynamic code generation You can find satic code generation in the typescript example. Run an example: node app.js The script: 'use strict'; const PROTO_PATH = __dirname…
Read more