
TraderExperto

Info
Username: | TraderExperto |
Name: | TraderExperto |
Member since: | 07 Jun 2019 |
Country: | Italy |
Favorite symbols:
About
Signature
Last Algorithm Comments
@fsgesg: 15 Nov 2022, 02:50
Why are you copy pasting my indicator? What's so cool about doing it?
This is the original one Moving Average Cross Over
@Moving Average Cross Over: 25 Oct 2022, 22:17
Sorry for the error in the Code! Made it in a hurry some members of one of our groups were asking it.
So i just uploaded it without ckecking if it was everything all right
@Tick Volume Delta: 30 Dec 2020, 06:45
Sorry for the late Response. I will be soon uploading more stuff like Weis Wave, Weis Box, Anchored VWAP, Volume Profile and a Range Volume Profile. You can find me in the Telegram Group Ctrader Comunity by my name as Trader Experto or Renato Cavalcante if you want to chat with me.
Last Forum Posts
@Assembly must be Algo Type when building on VS 2022: 05 Dec 2022, 03:05
Hello Ctrader Team, I'm tring to create a Dll file on Visual Studio 2022 that uses the cAlgo.API in the reference, cause i have multiple functions that need access to some properties like Account, HIstory, Positions and etc, but the thing is that the only error that i get is Assembly must be Algo type. I've made some research but didn't found any solution. I also tried some simple peace of code to what could it be like in this post https://ctrader.com/forum/cbot-support/1739?page=2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
namespace cAlgo
{
public class General
{
public static int GetPosCnt(Robot robot)
{
int iPosCnt;
iPosCnt = robot.Positions.Count;
return iPosCnt;
}
public static double GetLastCloseValue(Robot robot)
{
return robot.Bars.ClosePrices.LastValue;
}
}
}
@What's New in cTrader Desktop 4.4: 12 Oct 2022, 02:39
public ToggleButton ShowPanel;
public Window W;
protected override void Initialize()
{
ShowPanel = new ToggleButton
{
Width = 60,
Height = 25,
Text = "Show",
VerticalAlignment = VerticalAlignment.Top,
HorizontalAlignment = HorizontalAlignment.Left,
Margin = "20 110 0 0",
BackgroundColor = Color.FromHex("FFBF9100"),
FontWeight = FontWeight.DemiBold
};
Chart.AddControl(ShowPanel);
ShowPanel.Checked += ShowPanel_Checked;
ShowPanel.Unchecked += ShowPanel_Unchecked;
W = new Window();
W.Width = 600;
W.Height = 400;
W.MinWidth = 500;
W.MinHeight = 300;
W.MaxWidth = 700;
W.MaxHeight = 500;
W.ResizeMode = ResizeMode.CanResize;
W.BackgroundColor = "FF013861";
var wrapPanel = new WrapPanel();
for (var i = 0; i < 10; i++)
{
var button = new Button
{
Text = "Click Me",
BackgroundColor = "#0E9247",
Margin = 5
};
wrapPanel.AddChild(button);
}
W.Child = wrapPanel;
}
private void ShowPanel_Unchecked(ToggleButtonEventArgs obj)
{
ShowPanel.Text = "Show";
W.Hide();
}
private void ShowPanel_Checked(ToggleButtonEventArgs obj)
{
ShowPanel.Text = "Hide";
W.WindowStartupLocation = WindowStartupLocation.CenterScreen;
W.Show();
}
@Please Add IBOV Index(IBOV, WIN1, WIN2. Those are some of the names given to the main index from Brazil, São Paulo): 28 Nov 2020, 19:24
Please Add IBOV Index to the platform.
IBOV represents the Brazilian Index from São Paulo. Is the main asset traded from most Brazilian Traders, that are moving to the forex markets and are also willing to trade the same index on a more advanced platform like Ctrader. I'm the founder of a Group Dedicated to the Ctrader platform Dedicated to a Portuguese Speakers called ComunidadeCtrader. The group is growing very fast with the help of many other traders, and bringing more developers do the platform, sharing some code, and releasing new Indicators and bots for free to the community, this made the group grow very fast, and the majority of them being Brazilians, are very interested to trade this index on Ctrader. Some of us already tried to suggest to bring the IBOV index to some Brokers, like Pepperstone and iCMarkets, where the majority have their accounts. So I would that you consider to bring this Index to the Official Spotware's Ctrader platform. So that it would benefit more of them. And it would also help more people stop Trading MT4 and MT5. Here it is the link of our
t.me/ComunidadeCtrader
@Plêiade Add IBOV Index (Ibov, Win1,Win2. The represent the main index Of Brasil São Paulo): 28 Nov 2020, 19:14
Please Add IBOV Index to the platform.
IBOV represents the Brazilian Index from São Paulo. Is the main asset traded from most Brazilian Traders, that are moving to the forex markets and are also willing to trade the same index on a more advanced platform like Ctrader. I'm the founder of a Group Dedicated to the Ctrader platform Dedicated to a Portuguese Speakers called ComunidadeCtrader. The group is growing very fast with the help of many other traders, and bringing more developers do the platform, sharing some code, and releasing new Indicators and bots for free to the community, this made the group grow very fast, and the majority of them being Brazilians, are very interested to trade this index on Ctrader. Some of us already tried to suggest to bring the IBOV index to some Brokers, like Pepperstone and iCMarkets, where the majority have their accounts. So I would that you consider to bring this Index to the Official Spotware's Ctrader platform. So that it would benefit more of them. And it would also help more people stop Trading MT4 and MT5. Here it is the link of our Telegram Group t.me/ComunidadeCtrader
@Add plugins/extensions to cTrader: 17 Sep 2020, 04:24
I think it would help a lot not just the developers, but all the Ctrader users too. Given the possibility to create Plugins will improve a lot the user experience through more advanced applications that can be installed on the Ctrader platform, like others Platforms.