Skip to content

Installation

Ahmad Noman Musleh edited this page May 31, 2020 · 9 revisions

Changing Indicator/cBot Access Rights

In order to be able to access external libraries via your cTrader indicator/cBot, you must set the access right to full access:

    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class AlertTester : Robot

NuGet

Open your indicator/cBot with Visual Studio:

Opening cTrader Indicator/cBot with Visual Studio

First of all, change your indicator/cBot ".Net framework" version to 4.5:

Changing cTrader Indicator/cBot .Net Framework Version

Now go to NuGet package manager and search for "cAlgo.API.Alert":

cTrader Indicator/cBot NuGet Package Manager

Click "Install" and wait for it to finish the installation; if installing from the NuGet Package Manager Console use this command:

Install-Package cAlgo.API.Alert

Installing via NuGet is recommended as it will enable you to easily update/remove the installed package.

Clone this wiki locally