Topics
Replies
PanagiotisCharalampous
24 Dec 2020, 10:58
Hi vcfr99,
I'm wondering if closing a position also forms a sub-period
No it doesn't
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2020, 07:54
Hi acrigney,
The team is already working on this. However we do not have an ETA for this since it is a complicated task.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2020, 07:52
Hi 8089669,
There is no built-in method for this. You need to write your own code which should not be so complicated.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2020, 07:47
Hi Jack,
Check this article as well.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2020, 07:45
Hi vcfr99,
Here is the formula.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 15:13
( Updated at: 21 Dec 2023, 09:22 )
Hi linton.nkambule,
This functionality is already available in the New Marker Order form
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 15:05
Hi makhzen,
From what I read, I cannot see any rule being violated. You invested in a risky strategy. All the information was available to you before you invest.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 11:31
Hi Martin_I,
Try checking if error.TradeResult is not null before you access it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:35
Hi pancakeman,
Center of gravity is a non-repainting indicator. To figure out if an indicator is repainting or not, you need to study the formulas and logic based on which they are implemented.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:25
Hi makhzen,
What kind of support do you need?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:24
Hi EagleMoxy,
Yes this is correct. Our servers are connected to LPs via FIX. Regarding the encryption connection, I have replied in the other thread.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:22
Hi EagleMoxy,
If you build your cBot without source code, then the content is encrypted and the source code is not distributed with the .algo file.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:18
Hi 8089669,
You need to explain a bit better what are you trying to do. Your description is not very clear. The OHLC information for bars is stored in the robot's Bars property.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:13
Hi jackhpfilerrowson,
Try smtp instead of smpt.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Dec 2020, 08:11
Hi Martin_I,
Try this instead
protected override void OnError(Error error)
{
switch (error.Code)
{
case ErrorCode.BadVolume:
Print("Bad Volume");
break;
case ErrorCode.TechnicalError:
Print("Technical Error");
break;
case ErrorCode.NoMoney:
if (error.TradeResult.Position.TradeType == TradeType.Buy)
{
Kaufen = false;
Print("FEHLER - NO MONEY - KAUFEN = FALSE");
}
if (error.TradeResult.Position.TradeType == TradeType.Sell)
{
Verkaufen = false;
Print("FEHLER - NO MONEY - VERKAUFEN = FALSE");
}
break;
case ErrorCode.Disconnected:
Print("Disconnected");
break;
case ErrorCode.MarketClosed:
Print("Market Closed");
break;
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Dec 2020, 16:16
Hi ketos.energy,
Backtesting is rounding the entry time to the minute, if this is what is confusing you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Dec 2020, 11:05
Hi LCTRADER,
Out of curiosity, what was the issue?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Dec 2020, 08:43
Hi ifadi123,
The reason that the indicator does not display is that you probably do not have enough bars loaded on the chart. To see the indicator, scroll back the chart to load more bars and then wait for some time for the indicator to be calculated.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Dec 2020, 08:29
Also I cannot see where do you see a minute difference. Can you please point me to the deal you referring to?
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2020, 14:37
Hi JeanPaul,
Thanks for taking the time to provide us all this useful feedback and thanks for your nice words. I will just comment one of your points which is
Not really but we have not added new features in cTrader Automate for some time because we are heavily working on this
We are migrating the entire codebase to .Net Core 5, so we halted all the rest of the development. When we finish with this, you should expect much more frequent updates and features for cTrader Automate.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous