
Topics
Replies
PanagiotisChar
11 Aug 2023, 13:13
Hi there,
You can't do this using the built-in functionality of cTrader. You would need to develop something yourself.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
11 Aug 2023, 08:03
It's because there are two different types of objects. First change
private readonly ChartTrendLine _chartTrendLine;
In SignalLine class to
public ChartTrendLine ChartTrendLine;
and then try
foreach (var signalLine in SignalLineRepository.GetLines())
{
signalLine.ChartTrendLine.CalculateY(Server.Time);
}
@PanagiotisChar
PanagiotisChar
11 Aug 2023, 06:11
Hi there,
You are using the indicators before initializing them. That's why you get the exception.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
11 Aug 2023, 05:19
Hi there,
What is a SignalLineRepository? Where did you find this?
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
11 Aug 2023, 05:15
( Updated at: 21 Dec 2023, 09:23 )
Hi there,
Just click on the image and then edit your profile picture

Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
11 Aug 2023, 05:12
Hi there,
Which bot? Did you talk to the cBot developer?
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
10 Aug 2023, 10:19
Hi there,
This message should be sent to the QUOTE channel. Can you send it again and share the response? Make sure you are sending it to the correct port as well
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
10 Aug 2023, 06:03
( Updated at: 21 Dec 2023, 09:23 )
Hi there,
Try creating separate profiles.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
10 Aug 2023, 05:58
Hi there,
Do you still have this problem?
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
10 Aug 2023, 05:58
Hi there,
Do you still have this problem?
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
10 Aug 2023, 05:57
Hi there,
It takes up to 24 hours.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
09 Aug 2023, 05:32
Hi there,
Can you share the exact FIX response as well?
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
09 Aug 2023, 05:30
Hi there,
Check the Python sample below. It should be helpful
https://github.com/spotware/OpenApiPy
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
09 Aug 2023, 05:28
Hi there,
It's wrong. Try
foreach (var order in PendingOrders)
{
if (order.Label == "Ordine")
{
if(Symbol.Ask> order.TargetPrice + (Symbol.PipSize * 12))
{
double newPrice = Symbol.Ask + 5 * Symbol.PipSize;
ModifyPendingOrder(order, Symbol.Bid + 0.0003, null,20);
//metto il tp a 20 pips
}
}
}
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
09 Aug 2023, 05:21
Hi there,
No you cannot. You can consider running cTrader Desktop on a VPS or use Parallels on your Mac.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
08 Aug 2023, 09:13
Hi there,
You need to use a cBot for this
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
08 Aug 2023, 05:43
Hi there,
You would need to automate this using a cBot. If you are interested to assign the job to somebody, feel free to contact me at development@clickalgo.com
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
08 Aug 2023, 05:41
Hi there,
You only need to authenticate once. Then make sure the connection stays open by sending heartbeats.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
08 Aug 2023, 05:40
Hi there,
If you are looking for an automated way to do this, there isn't. You need to do this manually.
Need help? Join us on Telegram
@PanagiotisChar
PanagiotisChar
11 Aug 2023, 13:14
Hi there,
I don't see any 31% anywhere on the equity chart.
Aieden Technologies
Need help? Join us on Telegram
@PanagiotisChar