Replies

PanagiotisChar
31 Jul 2023, 06:23

Hi there,

You need to start a new strategy.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
31 Jul 2023, 06:20

Hi there,

This is how markets work. Your followers copy your signal and execute it on their own account and their own broker. Different prices and slippage can occur. There is no way any software can guarantee any price. There is nothing misleading here as it is clearly explained in the EULA you agreed on before you started using the service.

Aieden Technologies

Need help? Join us on Telegram


  


@PanagiotisChar

PanagiotisChar
31 Jul 2023, 06:15

Hi there,

Use .Net 6.0 since cTrader Automate is built using .Net 6.0.

Aieden Technologies

Need help? Join us on Telegram


 

 


@PanagiotisChar

PanagiotisChar
28 Jul 2023, 05:34

Hi there,

Better contact myfxbook.com about issues with their service.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
28 Jul 2023, 05:32

Hi there,

No there isn't. Templates cannot be shared between devices.

Aieden Technologies

Need help? Join us on Telegram


 

 


@PanagiotisChar

PanagiotisChar
28 Jul 2023, 05:27

Hi there,

The issue is obvious. Different entry and exit prices. This is expected in cTrader Copy.

Aieden Technologies

Need help? Join us on Telegram


 

 


@PanagiotisChar

PanagiotisChar
27 Jul 2023, 05:23

Hi there,

Can you share screenshots demonstrating this?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
27 Jul 2023, 05:21

Hi,

It's wrong to evaluate at the opening of the previous bar. This is what you were doing before and was not working. The indicator should be calculated on every tick until the bar closes. Regarding signals (I guess you are reading this from a cBot?) you should only consider closed bars.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
27 Jul 2023, 05:13

Hi there,

Same way, just modify the position volume

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
27 Jul 2023, 05:12

Hi,

This became available in 4.8

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
27 Jul 2023, 05:11

Hi there,

See below

ExecuteMarketOrder(tradeType, SymbolName, volumeInUnits, "SampleRSI", StopLoss, TakeProfit);

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 13:37

Hi again,

Try removing this condition

if (index > lastIndex) 

It causes the problem and I don't see the point of it


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 13:37

Hi again,

Try removing this condition

if (index > lastIndex) 

It causes the problem and I don't see the point of it


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 13:12

Hi there,

Are you using 4.8.15?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 13:10

Hi there,

You can check the examples and see how these messages are read from the stream e.g. 

            _client.ObserveOn(SynchronizationContext.Current).OfType<ProtoOASpotEvent>().Subscribe(OnSpotMessage);

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 13:06

Hi there,

The current issue is that the indicator produces signals for historical data, but not for live real-time data.

How did you come this conclusion?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 13:00

RE: RE: Missing bars

gary_forex said: 

PanagiotisChar said: 

Hi there,

This is the convention on which the platform was built and thousands of cBots developed around it. Such a change would break thousands of projects, so realistically you cannot expect it to change. You need to develop your own project around this.

To “not have missing data” is not a breaking change, lol, the existing indicators & bots are likely not even aware they have the potential to miss anything.. and as long as there is a pretty line on the screen, the trader is no wiser, I guess.

Anyway, I've coded around it, but it should still be addressed at some point…

The lack of any cTrader reps around here is concerning too, considering the nature of what these bots do.

It would be nice of you to show some respect to people that have more experience than you on the subject and try to help you, instead of throwing lols around. To put it in your tone and style, what you propose is nonsense and will never get implemented. No official rep will bother.


@PanagiotisChar

PanagiotisChar
26 Jul 2023, 12:56

Hi there,

I am not sure what method you are looking for. You just need to send the relevant message. See the relevant examples on GitHub e.g. for C#

            var spotRequest = new ProtoOASubscribeSpotsReq
           {
               CtidTraderAccountId = _accountID,
           };

           spotRequest.SymbolId.Add(10003);

           var message = new ProtoMessage
           {
               Payload = spotRequest.ToByteString(),
               PayloadType = (int)ProtoOAPayloadType.ProtoOaSubscribeSpotsReq,
           };

           Transmit(message);

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar