
Topics
Replies
PanagiotisChar
09 Nov 2022, 16:03
Hi Alex,
The trailing stop loss distance is the same as the stop loss distance. So you set a stop loss and then you enable trailing. Check the Sample SAR Trailing Stop cBot that is shipped with cTrader.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
08 Nov 2022, 09:32
Hi there,
I got the same result on the backtest twice and I don't think that's possible
Can you explain what does this mean? What backtests did you run and what did you expect to see?
if (IsSignalLineCrossover && IsSignalLineCrossover_2)
What is this line supposed to do?
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
08 Nov 2022, 09:24
Hi there,
the signal tells the bot to make an order but sometimes doesnt get fill at the time and price that the bot asked for
Can you be more specific? Does the order get filled at the wrong price or is it rejected?
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
07 Nov 2022, 12:39
Hi codey,
There is no built in timeframe in cTrader but you can check the indicator below
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
07 Nov 2022, 12:38
Hi there,
Can you make your question more specific? What are you trying to do and what is your cBot doing instead? What kind of help do you need exactly?
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
07 Nov 2022, 12:35
Hi there,
You should have no problems. cTrader Copy takes care of the conversion.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
07 Nov 2022, 12:33
Hi there.
but majority of the time in live trading brooker fails to fill at the exact time and price level is there any way to improve it to retry 1s or 2 later ?
Can you explain what do you mean with this and what actually happens?
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
06 Nov 2022, 21:49
Hi safaeianmohsen,
If you need somebody to develop this for you, send me an email at development@clickalgo.com
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
03 Nov 2022, 11:07
Hi,
You can do that through QuickTrade
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
03 Nov 2022, 11:04
Hi there,
Heartbeats are used to keep the connection alive when there is no other activity. If you fail to send a heartbeat, the server will eventually close the connection and you will need to connect and authenticate again.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
03 Nov 2022, 11:00
The reason you will never see this in cTrader is because its a meaningless information. What you see in the history table is a list of deals. There is no 1:1 relationship between SL/TP and deals. SL/TP are associated to positions, they can change multiple times during the position's lifetime and a position can consist of one or more deals. So there is no such thing as a SL/TP for a deal.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
02 Nov 2022, 08:56
Hi MinMin,
OnTick() will be called for the chart symbol. You can subscribe to another symbol's ticks using the following
protected override void OnStart()
{
// Put your initialization logic here
Symbols.GetSymbol("GBPUSD").Tick += GBPUSD_Tick;
}
private void GBPUSD_Tick(SymbolTickEventArgs obj)
{
}
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
01 Nov 2022, 08:17
Hi martins,
If you want to rename the indicator, just right click on it and choose Rename.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
31 Oct 2022, 11:52
Hi Waxy,
Did you try
[Parameter("Color", DefaultValue = "Red")] public MyColors Color { get; set; }
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
31 Oct 2022, 11:51
Hi,
Trading schedule is set by the brokers, not by the platform.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
31 Oct 2022, 11:50
Hi,
You can change your email address on the ID site.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
31 Oct 2022, 11:46
( Updated at: 21 Dec 2023, 09:23 )
Hi GammaQuant,
Some suggestions
1) Install .Net 6.0 SDK
2) Make sure you are using the SDK compiler
3) Try building your cBots using FullAccess permissions
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
31 Oct 2022, 11:43
Hi there,
Send me an email at development@clickalgo.com with your exact requirements and I am happy to help you.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
31 Oct 2022, 11:40
Hi there,
Are you asking from somebody to do the job for you or are you missing some information to do this yourself? If you are missing information, please let us know what it is and we will be happy to help you.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
09 Nov 2022, 16:08
Hi there,
It's better to share the complete cBot and Indicator code so that we can advise.
Aieden Technologies
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar