PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
10 Sep 2020, 16:43

Hi luixcosta,

When did you start copying the strategy?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 Sep 2020, 15:27 ( Updated at: 21 Dec 2023, 09:22 )

Hi orsica,

The problem is with your averages

            double eur_tsiDivisor = eur_Abs_Ema2.Result[index];
            double eur_tsiDividend = eur_Ema2.Result[index];

A 25 period average on h1 is not the same with a 25 period average on m30. If you cut the timeframe into half, then you need to double your averaging periods so that the averaged period covers the same timespan. See below

But even in this case, you should not expect the results to be identical as a lower timeframe has more data, thus a better "analysis".

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 Sep 2020, 11:04

Hi fang0092,

Can you please provide more information so that we can reproduce this exception?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 Sep 2020, 10:13

Hi Ketu,

You can use ProtoOASymbolsForConversionReq to get a conversion chain and convert from one symbol to another.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Sep 2020, 15:51

Hi Frugler,

Can you provide us with a cBot that will allow us to reproduce this behavior?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Sep 2020, 15:50

Hi namth0712,

You can find all the available FIX Messages here. Balance and equity are not available via FIX.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Sep 2020, 15:30

Hi firemyst,

We do not have such plans at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Sep 2020, 15:04

Hi firemyst,

You cannot clear the logs via the API, only manually.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Sep 2020, 11:56

Hi heliodorstar,

If you notice, the problem is in 3.7. The dash-dotted line was available twice. This has been fixed in 3.8.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Sep 2020, 07:56

Hi heliodorstar,

Can you please send us some screenshots of the issue so that we can check?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 12:49

Hi Christian,

You should create your own structures that will host the information and have fields that your determine the type of the tick. Then just merge all information in one list and sort it by timestamp.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 11:43

Hi Christian,

You can't so if you need to distinguish them, it would be better to request them separately.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 10:17

Hi xabbu,

Yes I would recommend this approach.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 10:14

Hi xabbu,

On indicator 1.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 09:55

Hi xabbu,

Just use an IndicatorDataSeries to store your values.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 09:52

Hi Takis,

We cannot reproduce such a behavior. Can you please provide steps to reproduce?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 09:28

Hi xabbu,

1) You have to change indicator #1

2) Just call _newIndicator.Calculate(index);

Best Regards,

Panagiotis 


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 08:02

Hi xabbu,

The indicator's Calculate() method is only called when an IndicatorDataSeries accessed by external code. In your case this does not happen, hence the Calculate() method is never actually executed. You have two options a) use IndicatorDataSeries instead of a normal variable b) call Calculate() method manually.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 07:55

Hi RodMar,

We do not have specific plans to remove backwards compatibility but you are advised to check your code on every cTrader update.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Sep 2020, 07:53

Hi Tommy2019,

Please report this issue in the relevant section. This is for suggestions and the post will be deleted soon.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous