Difference between revisions of "Indicators API"

From NakedMarkets
Jump to navigation Jump to search
Line 16: Line 16:
Here is the process we advise you to follow in order to easily design your own indicator with the Naked Markets API :
Here is the process we advise you to follow in order to easily design your own indicator with the Naked Markets API :
* 1°) Download Visual Studio Community Edition 2022 for free : https://visualstudio.microsoft.com/vs/community/
* 1°) Download Visual Studio Community Edition 2022 for free : https://visualstudio.microsoft.com/vs/community/
* 2°) Install it and run it.
* 2°) Install it and run it with any empty project (or select "continue without code")
* ) Open the Naked Markets Custom Indicator Project Template
* 3°) Click on "Manage Extension" in the top "Extension" menu
* ) Develop your own indicator. All the API functions are documented on [[Indicators API functions|this page]].
* 4°) Type "NakedMarkets" in the search bar to find the extension, download and install it.
* ) Open the Naked Markets Custom Indicator Project Template, which will now appears at the Visual Studio startup.
* ) Develop your own indicator. All the API functions are documented on [[Indicators API functions|this page]].
<br>
<br>
<br>
<br>

Revision as of 08:32, 10 January 2023

Summary

The Naked Markets Indicators API (Application Programming Interface) allows any user to create their own indicator.
This API has been designed to make it easy to use. It is possible to code the indicators in C# or Visual Basic languages.

Several IDE (integrated development environment) can be used in order to develop your own indicator.
However, we recommend to use the most popular ones, giving their support and their community :


This API uses a naming convention close the Metatrader one. Indeed, the function names are very similar to simplify the conversion from MQL4 indicators to Naked Markets indicators.

How to create your own indicator

Here is the process we advise you to follow in order to easily design your own indicator with the Naked Markets API :

  • 1°) Download Visual Studio Community Edition 2022 for free : https://visualstudio.microsoft.com/vs/community/
  • 2°) Install it and run it with any empty project (or select "continue without code")
  • 3°) Click on "Manage Extension" in the top "Extension" menu
  • 4°) Type "NakedMarkets" in the search bar to find the extension, download and install it.
  • 5°) Open the Naked Markets Custom Indicator Project Template, which will now appears at the Visual Studio startup.
  • 6°) Develop your own indicator. All the API functions are documented on this page.



API functions definition

The complete list of all the functions used to define your own indicator is available on this dedicated page.

Naked Markets indicators source code

In order to help developers to see how the API is used, the source code of all the native indicators in Naked Markets is available on our Github repository : https://github.com/NakedMarkets/Indicators