Topics
Replies
PanagiotisCharalampous
30 Aug 2021, 15:23
Hi Nick,
You have two options
1) Hard code the expiration date in the cBot's code and exit the cBot in case the expiration date has passed.
2) Implement a licensing system that will control the trial period of your cBot.
See an example for point 1 below
var dateTime = new DateTime(2021, 9, 30);
if (Server.Time > dateTime)
return;
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 11:47
Hi there,
You could consider programming a condition that would allow the cBot to trade only during that specific day.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:38
Hi k_543210,
In principle, this is possible. You can construct Q1 and Y1 bars using the data available from M1 bars.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:31
Hi SA_TRENDS,
Please provide us with some screenshots of this message so that we can investigate further.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:26
Hi robertsteven6027,
The platform supports this option. However this needs to be supported by your broker as well.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:25
Hi ethanmcowell,
Thanks for your feedback. It would be more helpful for us if you could elaborate of the exact problem you have so that we can investigate and solve it.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:20
Hi SA_TRENDS,
Which button are you referring to? Can you share some screenshots?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:16
Hi nickthgiav,
There is no limitation in historical data but there is a limitation in how much data can be retrieved in one single request. If the requested data exceeds this limitation, then it should be requested over multiple requests. This is something the NinjaTrader team needs to handle on their side.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:11
Hi SmartMoneyFx,
This is by design. The follower's investment is allocated to the strategy's positions, as it would when invested in any other fund. Investors invest in strategies as a whole and not in individual positions.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 08:07
Hi rohitkarki,
Unfortunately this is not possible at the moment.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Aug 2021, 14:03
Hi Neilsh,
We received the files and we are investigating.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Aug 2021, 07:48
Hi joseph.decosta.tan,
Your problem is here
Bars.ClosePrices(1)
It should be
Bars.ClosePrices.Last(1)
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Aug 2021, 07:36
Hi akudzmanas,
It will be fixed but we do not have an ETA yet.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Aug 2021, 07:30
Hi Neilsh,
You can compress it and try sending it using TransferNow.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
26 Aug 2021, 11:34
Hi Neilsh,
Just send me an email.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
26 Aug 2021, 08:39
Hi akudzmanas,
This issue has not been fixed yet.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
26 Aug 2021, 08:37
Hi Mhosseinb,
Check this indicator.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
26 Aug 2021, 08:35
Hi thomaslittler,
Please check if there is something blocking your cTrader from connecting to the server e.g. a firewall or a proxy
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
25 Aug 2021, 15:50
Hi andi21,
We did not change this behavior, neither do we plan to change it in the immediate feature. Taking into consideration all the possible use cases, we consider this is the best way handle this at the moment.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2021, 15:55
Hi Nick,
You will probably have to buy one (google it, there are hundreds of them available) and implement it as per the developer's instructions.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous