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

PanagiotisCharalampous
04 Aug 2021, 08:14

Hi terryww2,

Can you please explain why do you think the message is invalid?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Aug 2021, 14:23

Hi MujoiHaso,

Can you please let us know the strategy name and share some screenshots showing the open positions?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Aug 2021, 10:27

Hi TheMC,

As explained above, If you do not feel comfortable following such strategies, then just avoid them. However, there are strategy providers that require such a feature and investors that do not have a problem with this. There is no reason to forbid the two parties from engaging in such a relationship, just because some other investors don't like it.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
03 Aug 2021, 08:19

Hi Ali,

Check this indicator.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Aug 2021, 08:16

Hi TheMC,

This feature has been requested by many strategy providers and it is understandable that many providers don't want to disclose their open trades. If you do not feel comfortable following such strategies, then just avoid them.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Aug 2021, 08:11

Hi rongreudz,

cBots are executed on the client machine, therefore running them on a VPS would be advisable.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Aug 2021, 16:33

Hi khoshroomahdi,

See an example below

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 NewIndicator : Indicator
    {
        [Parameter(DefaultValue = true)]
        public bool ShowOnMain { get; set; }


        protected override void Initialize()
        {
            // Initialize and create nested indicators
        }

        public override void Calculate(int index)
        {
            if (ShowOnMain)
                Chart.DrawStaticText("Text", "Text", VerticalAlignment.Top, HorizontalAlignment.Right, Color.Red);
            else
                Chart.IndicatorAreas[0].DrawStaticText("Text", "Text", VerticalAlignment.Top, HorizontalAlignment.Right, Color.Red);

        }
    }
}

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Aug 2021, 10:57 ( Updated at: 21 Dec 2023, 09:22 )

Hi salimshook,

Here it is 

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jul 2021, 14:56

Hi waym77,

You can also consider changing the trigger method and trigger your stop loss on bid prices.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jul 2021, 14:09

Hi waym77,

Is there a way I can get the Renko to be calculated via (Bid + Ask) / 2?

No that is not possible

Or if this is not possible, would it simply be best to widen the Stop to 11 pips?

What problem are you trying to solve here? Why do you need to change the way you trade the Ask prices based on what the Bid prices do?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 16:09

Hi genappsforex,

Thanks, we will fix this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 16:09

Hi hao.han,

The issues do not seem related to cTrader. They look more related to your graphics card drivers.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 11:27

Hi khoshroomahdi,

No this is not possible.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 09:07

Hi khoshroomahdi,

This is not possible through code at the moment.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 08:54

Hi khoshroomahdi,

Check LevelsAttribute

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 08:50

Hi acrigney,

If you are running a cBot, then this is probably caused by the cBot. We will need to have the source code as well.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 08:23

Hi khoshroomahdi,

It is not clear what is the question here. Also what are these percentages about?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
21 Jul 2021, 08:21

Hi acrigney,

Please send us some troubleshooting information from the instances that are freezing. To do so, press Ctrl+Alt+Shift+T to get the report form, paste the link to this discussion in the text box and press submit.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
20 Jul 2021, 12:09

Hi notzen,

To be able to identify what is consuming so much memory, we will need to have the cBot source code.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous