Expert Advisor Series 1 ~ Code a Hello World Expert Advisor ~

WEB Trader Get it on Google Play
  • Post by Fintechee
  • Jan 22, 2021
This tutorial video talks about how to code an expert advisor via Fintechee WEB Trader. Expert advisor stands for trading robot

Expert Advisor Series 1 ~ Code a Hello World Expert Advisor

Tutorial for Forex Trading is one of Fintechee’s free services. We help traders learn how to trade Forex by using our WEB Trader or Expert Advisor Studio. The contents here will not be limited to the field of Forex. Any instrument of investment will be discussed.


Code a Hello World Expert Advisor

Description

This tutorial video talks about how to code an expert advisor. “Expert advisor” stands for trading robot. We can use them to analyze the market movements and get signals, we can use them to send orders and open trade positions as well. There are three callback functions to perform different purposes.

  • Init function: it’s used to create resources.
  • Deinit function: it’s used to release resources.
  • OnTick function: it’s the main function and will be triggered every time we receive a tick data from the streaming quotes.

We can find the source code examples in our Github repository.