Description
a cTrader cBot that will place Trades based on News Releases. Can be highly customisable:
- Built-in License Key Verification for WordPress License Manager
- Places orders based on High/Medium/Low News Importance
- Can Handle Auto-Risk Trading
- Shows historical news events onscreen
- Will Update News Data on News Refresh
- Will Update Daylight Savings Time
- One Order Taken Cancels the Other or not
- Trade Protections Available
- Has 2 Different Trading Options Available:
- Standard Trading
- Ratchet Trading
- Back-testing Available
- This will back-test from the data Available from the .CSV File
VERTO NEWS TRADER
The Verto News Trader is a new way of Trading news events with highly customisable options. Because this cBot does not use any kind of Mathematical equations to find and entry and exit point, this makes the cBot work solely on the Markets reaction and Volitility of a News Event.
PLEASE NOTE: This cBot requires the latest version of cTrader
CBOT BACKTEST | 1 YEAR EURUSD
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;
namespace cAlgo
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class VertoTradingSoftware : Robot
{
[Parameter(DefaultValue = 0.0)]
public double Parameter { get; set; }
private static Mutex dialogMutex = new Mutex();
private static bool dialogIsShownOnce = false;
protected override void OnStart()
{
ShowDialogBox();
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
public static void ShowDialogBox()
{
dialogMutex.WaitOne();
if (dialogIsShownOnce)
return;
var ret = MessageBox.Show("The Forex News Trader cBot is not available from the cTrader website. Would you like to visit us at getverto.com.au where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (ret == DialogResult.Yes)
{
System.Diagnostics.Process.Start("https://getverto.com.au/product/forex-news-trader/");
}
dialogIsShownOnce = true;
dialogMutex.ReleaseMutex();
}
}
}
Webwire_Sean
Joined on 01.07.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Verto Trading Software.algo
- Rating: 5
- Installs: 767
- Modified: 13/10/2021 09:54
Comments
Thank you for this tutorial. I am not to trading and there are many things I still must learn. But I must tell you, that without https://www.dailywebpoint.com/what-are-forex-pips-and-points/ I would not be able to make a decision to start. Before it had always seemed more difficult that it actually was.
Hi, any instruction video or a screenshot of entry, screen, pls ? Thanks.
Hi, any instruction video or a screenshot of entry, screen, pls ? Thanks.
Thank you for you job.
But I don't know how to pay for this cbot?