Description
VERTO TELEGRAM CBOT
Are you like alot of other traders who use Telegram to get recommended trades? Are you wanting an easier way to execute trades from these Telegram channels by just typing in what you want? Here at Verto Trading we have the option for you! Introducing the Verto Telegram cBot!
This cBot only needs to run on on one Currency Pair. You will know when the cBot is running on the Currency Pair as you will see “Online” displayed in the bottom right-hand corner of the screen.
WHAT'S IN THE BOT?
When the cBot is first started on your cTrader Platrom of choice, it will ask you to log into your telegram and run the /start command. Once done, the Telegram cBot will grab your information with complete privacy and start communicating diractly with you and you alone. You will then have the following options:
OPEN POSITIONS
Will Give you a list of your Open Positions with the following Information:
- Total Gross Profit
- Total Net Profit
- Pair
- Entry
- Lots, Pips, Swap
- Gross Profit | Net Profit
- Trailing Stop Loss Status
OPEN ORDERS
Will Give you a list of your Open Orders with the following Information:
- Pair
- Entry
- Lots
- Target
- Stop Loss (In Pips)
- Take Profit (In Pips)
ACCOUNT INFORMATION
Will Give you a list of your Account Information with the following Information:
- Broker Account Name
- Leverage
- Equity
- Margin
- Free Margin
- Margin Level
- Stop Out Level
- Account Balance
- Current Equity
ORDERS / POSITIONS PLACEMENT
Will Give you the option to do one of the following:
- Place Trades
- Type in your Trade.
Direction,Currency Pair,Risk (%),Stop Loss (Pips),Take Profit (Pips)
buy,audusd,2,65,65
ENSURE THERE ARE NO SPACES
- Type in your Trade.
- Place Orders
- Type in your Order.
Direction,LIMIT or STOP,Currency Pair,Risk,Target,Stop Loss (Pips),Take Profit (Pips)
EXAMPLE:
buy,stop,audusd,2,0.7585,65,65
ENSURE THERE ARE NO SPACES
- Type in your Order.
- Order Cancellation
- Allows you to cancel a placed order
- Main Menu
- Takes you back to the main Menu
- Current Equity
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 Verto Telegram 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/verto-telegram-cbot/");
}
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: 706
- Modified: 13/10/2021 09:54