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

PanagiotisCharalampous
11 Dec 2018, 10:47

Hi Mario,

I am not sure what are you trying to check. Can you please elaborate?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
11 Dec 2018, 10:41

Hi tgjobscv,

You can seek for professional assistance by positng a Job or contacting a Consultant.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
11 Dec 2018, 10:34

Hi eirik_1993,

1) You cannot replace the build in Volume bars. In this case, the separate window is the only applicable way to display this indicator.

2) The Risk/Reward tool is actually a cBot therefore you should find it in your cBots section.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
11 Dec 2018, 10:27

Hi Mario,

Check HasTrailingStopLoss

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 17:41

Hi irmscher9,

Can you tell me the symbol and the account type (demo/live)? I checked on Demo and EURUSD tick data and goes back to 2014.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 17:12

Hi netread2004,

At the moment only incremental refresh is supported therefore you will receive a 35=W at the begining and 35=X afterwards. You need to check your update procedure and make sure it is correctly implemented.

Best Regards,

Panagiotis 


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 17:02

Hi Mountain,

Unfortunately I cannot build this cBot since it references indicators that are missing. Please send the cBot and the images at community@spotware.com.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 15:05

Dear ctid762280,

Thank you for posting in our forum. Currently there is no link between watchlists and charts.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 15:00

Hi Eduardo,

The first screenshot you sent was different than this and confused me. When you say volume do you mean volume fees? if yes, then you need to stop providing the strategy first, change the volume fee and then start it again.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 14:47

Hi Mountain,

Thanks but I have not received anything. Where did you send them?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 14:45 ( Updated at: 21 Dec 2023, 09:21 )

Hi Eduardo,

See the name field below in red

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 14:23

Hi Eduardo,

Thanks for posting in our forum. Try typing a name first. After you type the name, the button will become enabled.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 14:20

Hi netread2004,

Message 35=X is incremental update. So it will stream to you only additions and deletions. The quote prices might have already been streamed to you by 35=W. What spread do you get with 35=W?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 11:55

Hi sean.cappone,

Thanks for posting in our forum. Please see below an example of how you can incorporate start and stop hours in your cBot

using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class NewcBot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        [Parameter("Start Time", DefaultValue = "08:00")]
        public string StartTime { get; set; }

        [Parameter("Stop Time", DefaultValue = "12:00")]
        public string StopTime { get; set; }
        protected override void OnStart()
        {
            // Put your initialization logic here
        }

        protected override void OnTick()
        {
            var tradingStarts = TimeSpan.ParseExact(StartTime, "hh\\:mm", null);
            var tradingStops = TimeSpan.ParseExact(StopTime, "hh\\:mm", null);
            if (Server.Time.TimeOfDay >= tradingStarts && Server.Time.TimeOfDay < tradingStops)
            {
                //Trade
            }
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 11:16

Hi 1222Ht,

This is not possible at the moment.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 11:00

Hi tgjobscv,

Change line 76 to the following

ExecuteMarketOrder(tradeType, Symbol, Volume, "SampleRSI".Clone, StopLoss, null);

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 10:56

Hi eirik_1993,

Advanced protection is only available after the position is created.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 10:53

Hi eirik_1993,

Can you please give me the links to these indicators so that I can have a look and answer your questions?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 10:51

Hi cantalupo,

We do not have at ETA yet but it is in our backlog for one of our next releases. Maybe sometime in 2019.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
10 Dec 2018, 10:48

Hi tgjobscv,

I still cannot reproduce the behavior you are describing. Can you please record a short video so that we can see the steps you are following?

Best Regards,

Panagiotis


@PanagiotisCharalampous