Description
This is a free pack of 16 cTrader chart themes. These themes will not mess with the configurations of your chart templates, they will only change the colors of the chart.
How to use:
- Install the file just like any other indicator by double-clicking it.
- Add the indicator to your chart.
- Choose the theme you want.
- Once you are satisfied with a theme, remove the indicator from the chart.
- Save the theme as a chart template. Done.
Here you can see some of the included themes:
Dark_I
Light
Quantum
Check out my projects:
Bundles:
Indicators:
cBots:
Free Stuff:
// -------------------------------------------------------------------------------------------------
//
// cTrader Chart Themes.
//
// Created by VegaXLR.
// https://vegaxlr.gumroad.com/
//
// -------------------------------------------------------------------------------------------------
using cAlgo.API;
using System.Windows.Forms;
namespace cAlgo
{
[Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class GetcTraderChartThemesbyVegaXLR : Indicator
{
protected override void Initialize()
{
var redirect = System.Windows.Forms.MessageBox.Show("Please click YES to open a web browser where you can download this indicator for FREE", "Open Web Browser", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (redirect == DialogResult.Yes)
{
System.Diagnostics.Process.Start("https://vegaxlr.gumroad.com/l/cTrader-Chart-Themes-VegaXLR");
}
}
public override void Calculate(int index)
{
}
}
}
vegaxlr
Joined on 14.02.2023
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: Get cTrader Chart Themes by VegaXLR.algo
- Rating: 5
- Installs: 611
- Modified: 27/02/2024 00:53
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.
No comments found.