Replies

PanagiotisCharalampous
27 Jul 2020, 08:35

Hi karopega,

No this is not possible. Workspaces can be used only by the same application.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jul 2020, 08:33

Hi karopega,

This version is available in the latest version of cTrader.

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jul 2020, 08:30

Hi aerich48,

1. We do not have plans to add this information in FIX API. If you need more information about the positions, you can use Open API instead.

2. You need to provide more information regarding this issue e.g. your log with the sequence of messages that demonstrate what you are describing, so that we can investigate further.

 Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jul 2020, 08:22

Hi mipasame86,

Who is your broker? Do you use your broker's applications? Did you contact your broker?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jul 2020, 08:21

Hi Luca,

What do you mean when you say?

the bot does not recognize the position1 and position2 variables.

You need to use a more precise language.

 Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 15:46

Hi ac15x,

It does not seem you read the documentation. Your code doesn't make much sense. For example there is no such method. I don't know where you got this from

var indicator = Indicators.HighestHigh_LowestLow();

You can initialize the custom indicator as follows

 _hl = Indicators.GetIndicator<HighestHigh_LowestLow>(PeriodsHigh, PeriodsLow);

Also I do not understand what the indicator class is doing inside the cBot code. It should be in a separate indicator instance.

At last, you are initializing the indicator within the indicator 

        private HighestHigh_LowestLow _hl;
        protected override void Initialize()
        {
            _hl = Indicators.GetIndicator(PeriodsHigh, PeriodsLow, Top, Bottom);
        }

I do not understand why do you do it. This will probably lead to a stack overflow.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 14:55

Hi blessingoyelami,

Who is your broker? Do they offer AutoChartist?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 09:35

Hi K100,

I have reported this behavior to the product team and they are having a look at it.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 08:19

Hi koktos632,

First an order is filled and then a position is opened.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 08:18

Hi koktos632,

You can use DrawText() method.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 08:15

Hi DelTrader,

No forecasts at the moment.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 08:13

Hi tomashfield0,

There is no option at the moment, all fees are deposited in the trading account providing the strategy.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 08:12

Hi ac15x,

Here is the correct way to do it

 var emaHigh = Indicators.ExponentialMovingAverage(MarketData.GetBars(TimeFrame.Hour4, SymbolName).Close, 9);

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jul 2020, 08:10

Hi ac15x,

Read here how to reference custom indicators.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jul 2020, 16:11

Hi ac15x,

You can use GetBars() to get data from other timeframes and use them as sources for your indicators.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jul 2020, 15:23

Hi balazs9703,

Can you please tell us which strategy you are following and your broker?

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jul 2020, 12:46

Hi Ader,

Yes this is correct. You should see one deal for each of the strategy provider's deals with the volume being adjusted on an equity to equity ratio. The passage you quoted explains why you see additional deals in your account. These deals are a result of equity to equity readjustments which happen when the strategy providers deposits or withdraws funds to/from his account.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jul 2020, 11:19

Hi Ader,

Check here for more info about this question.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jul 2020, 11:15

Dear all,

We are currently investigating this issue. We will keep you updated.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jul 2020, 08:40

Hi Vitali,

You need to set IsFilled property to true.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous