Warning! This section will be deprecated on February 1st 2025. Please move all your Indicators to the cTrader Store catalogue.
Description
This code simply displays the current spread on the chart.
You can change its position or color.
My current unit is Points (0.1 pips).
- Visit https://ctrader.com/users/profile/55833 to see my other robots.
- Visit http://fx4u.net/robot/ to download my other robots file.
using System;
using cAlgo.API;
namespace cAlgo.Indicators
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class Spread : Indicator
{
public override void Calculate(int index)
{
Chart.DrawStaticText(" ", Math.Round(Symbol.Spread/Symbol.TickSize).ToString(), VerticalAlignment.Bottom, HorizontalAlignment.Right, Color.DarkBlue);
}
}
}
FX
Fx4U.net
Joined on 30.10.2021
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: Spread.algo
- Rating: 5
- Installs: 2076
- Modified: 04/01/2023 16:35
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
BY
Dzień dobry.
Możesz mi napisać jak zmienić kolor i położenie?
Pozdrawiam.
Hi I love this version of the spread. I'm so terrible with code. How would I change this code to show a decimal. Thanks