Topics
Replies
PanagiotisCharalampous
13 Nov 2018, 14:04
Hi Christopher,
Can you please share with us the following?
1) cBot code
2) cBot Parameters
3) Optimization Criteria
4) Optimization Dates
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Nov 2018, 10:24
Hi tradingu,
No, Pepperstone will be upgraded soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Nov 2018, 09:56
Hi Xavier,
Happy to hear that it has been resolved. Let us know if it appears again.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Nov 2018, 09:54
Hi man-gus,
You can install latest FxPro cTrader from here. Chart labels should not be affected.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 15:05
Hi man-gus,
Can you please verify that you are using 2.01? Your cTrader should have been upgraded to 3.0. If not, please download the latest version from your broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 14:47
Hi lec0456,
The calculation of some indicators might be public domain knowledge but the source code for each indicator implementation is proprietary work of Spotware. If you wish to verify the results of an indicator, there are many ways to do so without having access to the source code.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:58
Hi zhuyeaini,
I tried it and works fine for me. Can you share some screenshots with what you see?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:52
Hi tmfd,
It is in our immediate plans to start development of the multisymbol backtesting feature. Without any commitments on ETA I am confident that we will have this feature sometime next year.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:49
Hi tetra,
As I said above, Open API v2.0 has not been officially released yet. Documentation has not been completed. For the sample, you will need to send me your application credentials and the token you use at connect@spotware.com to check.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:43
Hi fred0815,
Thanks for posting in our forum. Brokers that are full members of cMirror will become full members of cTrader Copy as soon as they upgrade to the latest version of cTrader Web. Since the latest upgrade involves some changes that need to be carried out by the brokers, we will upgrade them as soon as we get the go ahead from them. For further information about their plans, please contact the brokers directly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:37
Hi all,
Do you still experience this problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:36
Hi Sasha,
There is no event for KeyPress at the moment. You can find the available events here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:32
Hi cysecsbin.01
Thanks for posting in our forum. See the below the correct way to implement this.
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class MarketSeries_Test : Indicator { [Output("Main")] public IndicatorDataSeries Result { get; set; } private MarketSeries EURUSD; protected override void Initialize() { Symbol eurusd = MarketData.GetSymbol("EURUSD"); EURUSD = MarketData.GetSeries(eurusd, TimeFrame.Hour); } public override void Calculate(int index) { Result[index] = EURUSD.Close[EURUSD.OpenTime.GetIndexByExactTime(MarketSeries.OpenTime[index])]; } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:25
Hi djtnd,
Please contact ICMarkets regarding their plans to upgrade to 3.3.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:05
Hi Xavier,
Can you send these projects to community@spotware.com so that we can have a look?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Nov 2018, 12:01
Hi Pierre,
Thanks for posting in our forum. ICMarkets has not been upgraded to 3.3 because they need to make internal infrastructure changes before they are ready to upgrade to the latest version. We will upgrade them as soon as they inform us that they are ready for the upgrade.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Nov 2018, 16:54
Hi Janse,
Thank you for posting in our forum. Can you please share a screenshot with us so that we can understand what you mean?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Nov 2018, 12:43
Hi zhuyeaini,
Thanks for posting in our forum. The formula is profit = volume * points * tick value.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Nov 2018, 11:19
Hi Ian,
Ok it is clear now. You should have put the print statement inside the brackets. The way you put it, the brackets are not considered part of the if statement any more, only the Print() method.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Nov 2018, 14:59
Hi zhuyeaini,
The reason you see this discrepancy is because you print the value of the bar at the opening of the bar but the indicator calculates the value when the bar closes and the data is finalized. If you want to print finalized calculations of the indicator values, you should print mAtrIndicator.Result.Last(1).
Best Regards,
Panagiotis
@PanagiotisCharalampous