Set up indicator
Last updated
Last updated
This is a separate guide on how to set up the environment to write your custom indicator for FTO.
To to use our custom indicator API, you need to first download indicator example. You can find some of the examples or download the suggested example file below.
Open it with Cursor or any IDE of your choice — we suggest Cursor. Then, by clicking the icon shown in Picture #1, open the terminal and install the dependencies using the command npm install
.
After installing the dependencies, build the project using the command npm run build
.
If you get an error that goes like this:
Then you need to enter command Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
and then trynpm install
and then npm run build
command again.
After building the project, a file my-indicator-project.js
(Indicator file name) will appear in the dist
folder.
If you want to know how to upload your indicator to FTO, you can go to .