Replies

mosaddeqi@gmail.com
21 Feb 2019, 09:35

RE:

Panagiotis Charalampous said:

Hi mosaddeqi@gmail.com,

Renk charts are available in cTrader Desktop since v3.3. You can read more here.

Best Regards,

Panagiotis

Thanks a lot Panagiotis.


@mosaddeqi@gmail.com

mosaddeqi@gmail.com
08 Nov 2018, 16:22

Problem with Fibonacci tool in cTrader

Hello,

I have problem with Fibonacci retracement tool in ctrader, I customize this tool includes uncheck some lines and change color of it and in the end, check "apply for default settings", But when I select new Fibonacci tool, settings not saved and all lines are checked.

How do I save default settings in this tool contains colors and lines?


@mosaddeqi@gmail.com

mosaddeqi@gmail.com
20 Apr 2018, 18:07

RE:

Panagiotis Charalampous said:

Hi mosaddeqi@gmail.com,

You can use the same robot on Bactesting and it will save the historical data.

Best Regards,

Panagiotis 

Thanks Mr. Panagiotis,

my problem solved with your guide.

I wish you all the best.


@mosaddeqi@gmail.com

mosaddeqi@gmail.com
20 Apr 2018, 16:18

RE:

Panagiotis Charalampous said:

Hi mosaddeqi@gmail.com,

Check the cBot below. It could be helpful.

/algos/cbots/show/843

Best Regards,

Panagiotis

Thank you very much!

This cBot save OHLC from running robot time, Is there any cBots to save data from past(this date will be set by user) untill now?

 

Regards


@mosaddeqi@gmail.com

mosaddeqi@gmail.com
19 Jan 2018, 08:50

RE:

Thank you very mutch Mr. Panagiotis, That's very usefull.

Panagiotis Charalampous said:

Hi mosaddequ@gmail.com,

This cBot will modify your positions SL and TP on start based on preset values. If this is what you are looking for then yes, it is ready to use.

Best Regards,

Panagiotis

 


@mosaddeqi@gmail.com

mosaddeqi@gmail.com
18 Jan 2018, 16:26

RE:

Thanks Panagiotis , I'm not a programmer, is it a ready one to use?

Panagiotis Charalampous said:

Dear mosaddequ@gmail.com,

Thanks for posting in our forum. You can try something like the following

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

namespace cAlgo
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class NewcBot : Robot
    {

        [Parameter(DefaultValue = 0.0)]
        public double StopLoss { get; set; }

        [Parameter(DefaultValue = 0.0)]
        public double TakeProfit { get; set; }

        protected override void OnStart()
        {
            foreach (var position in Positions)
            {
                ModifyPosition(position, StopLoss, TakeProfit);
            }
        }

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

Best Regards,

Panagiotis

 


@mosaddeqi@gmail.com