
Topics
Replies
PanagiotisCharalampous
07 Mar 2018, 14:03
Hi oneplusoc,
As the error message says, your indicator doesn't have a definition for this property. If you want to use it, you first need to define it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Mar 2018, 11:39
Hi oneplusoc,
You should define your indicator as shown below
private FX5_RSI_Divergence_V10_Indicator _DIV;
and initialize it as follows
_DIV = Indicators.GetIndicator<FX5_RSI_Divergence_V10_Indicator>(Source, 14);
Let me know if this helps,
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Mar 2018, 11:02
Hi eklon.sousa@gmail.com,
Could you please send us some troubleshooting information regarding this issue. When it happens again, please press Ctrl+Alt+Shift+T and submit the form that will pop up. In the text box, please put the link to this discussion.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Mar 2018, 10:23
Hi oneplusoc,
Can you send me the indicator to fix this for you?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Mar 2018, 09:41
Hi Alexander,
For execution issues you are advised to talk to your broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Mar 2018, 09:40
Hi oneplusoc,
The error comes from this line
private aa rsi v2 diver_DIV;
You should correct the code based on what you are trying to do.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 14:30
Hi oneplusoc,
Here is a guide on how to reference custom indicators in cBots or other Indicators.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 11:11
Hi mariuszpawel33,
I don't think there is anything to confirm since it is not clear to us what you are doing. cAlgo is just a .Net application that can be used for executing your cBots (.Net libraries) and cAlgo.API is a .Net library that can be used by your cBots. So there is nothing specific to email protocols and performance should not deviate much from any general .Net application executing the same code. As far as your issue is concerned, POP3 is a simpler protocol than IMAP therefore I would expect it to be faster. Are you reading emails using a cBot? Then, maybe your performance issue is a cBot specific issue. If you share more information, like the cBot code, then maybe we can provide more specific guidance.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 10:42
Hi leohermoso,
Thanks for reporting this bug. I have forwarded it to the product team to be fixed.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 10:41
Hi solomonsny@gmail.com,
Thanks for posting in our forum. What you are asking for needs some substantial development effort. If you need professional help with your cBot, you can contact a cAlgo Consultant.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 10:24
Hi cidmeku01,
Thanks for posting in our forum. I have tried to reproduce the issue but I couldn't. Could you please send me a cBot that can demonstrate this so that I can investigate further?
Regarding the post you mentioned, it is about an issue in optimization, not backtesting.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 09:56
Hi oneplusoc,
If you want to convert a custom indicator from MQL4 to cAlgo you can try this tool. If this doesn't help you, you might contact a Consultant to convert it for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Mar 2018, 09:51
Hi eklon.sousa@gmail.com,
Thanks for reporting this. Can you please tell us the tick chart you are using?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Mar 2018, 12:52
Hi Alexander,
Sorry, I missed the second question. Currently there is no event to handle a bar change for a timeframe that is not set on the current graph. You will need to find a programmatic workaround for this. See below an example that could guide your implementation
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo.Robots { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewcBot : Robot { [Parameter(DefaultValue = 0.0)] public double Parameter { get; set; } private DateTime _lastValue; protected override void OnStart() { _lastValue = MarketData.GetSeries(TimeFrame.Daily).OpenTime.LastValue; } protected override void OnBar() { var timeFrame = MarketData.GetSeries(TimeFrame.Daily); if (_lastValue != timeFrame.OpenTime.LastValue) { Print("Last value changed"); _lastValue = timeFrame.OpenTime.LastValue; } } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Mar 2018, 11:09
Hi tmc.
We are currently working on improving performance of the beta version.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Mar 2018, 11:06
Hi swingfish,
Please check this post. It might be helpful for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Mar 2018, 10:58
Hi Alexander,
The way you implemented this in your last example should work.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Mar 2018, 10:56
Hi douglascvas,
You can use Server.Time.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Mar 2018, 10:50
Hi Anton,
Thanks for posting in our forum. Can you please try downloading the application from https://roboforex.ctrader.com/xTrader.application?
Let me know if this works for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Mar 2018, 15:26 ( Updated at: 21 Dec 2023, 09:20 )
Hi PapaGohan,
Thanks for sharing your suggestion with us. Just to let you know that it is already possible to use an indicator as an input to another indicator, if the indicator has already beed added to the chart. See example below
Best Regards,
Panagiotis
@PanagiotisCharalampous