Topics
28 Jun 2019, 17:22
 1327
 2
05 Feb 2019, 02:42
 1829
 9
02 Feb 2019, 01:35
 0
 1175
 4
24 Jan 2019, 06:32
 1462
 7
Replies

shrumr
06 Jul 2019, 13:44

Will Risk & Reward Chart Trading Tool be the next product to go on sale tomorrow? :)


@shrumr

shrumr
13 Feb 2019, 01:32

I can let you know if you can email a contact I can get in touch with when this happens again. 

Meanwhile, Major workspace is lost again. Now the generic workspace loads and all charts and drawing are gone. 

Please polish this platform. It is quite good. But it is NOT RELIABLE. It is weak and game-ish. This is not how a trading platform should be. 

Even age old MT4 is more stable than this. I see you keep spending time on expanding your feature set and solutions ... Meanwhile ctrader itself is still buggy and company forum doesnt even have a basic spam filter. Where are your developers deployed? What is the purpose of cXchange? Do you have a single real client on that? Stop running around the bush and please FOCUS on ctrader itself. 


@shrumr

shrumr
06 Feb 2019, 03:37 ( Updated at: 21 Dec 2023, 09:21 )

Here is the example for point # 1

  1. Some times chart candles stop updating. Even though bid/ask lines are moving. 


@shrumr

shrumr
05 Feb 2019, 13:01

Hi, 

I am using icmarket. 

Sorry, I dont have example for point #2 saved on my computer. But I can take a screenshot and then share it later on. 

There is another issue which is opposite to point # 1, where ask/bid line disappear, even though candles are being updated. You have to go into viewing options and toggle them off/on to make them work again. 


@shrumr

shrumr
02 Feb 2019, 02:37 ( Updated at: 21 Dec 2023, 09:21 )

I have modified the indicator to just display daily 50/100/200 averages on the chart. 

Please have alook. I am very novice at this. 

 

I do wanted to ask, is it possible to disable this overlay value which appear on when mouse hovers over the MA lines?

 

 

Here is the full code:

 

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

namespace cAlgo.Indicators
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC)]
    public class MultiTF_MA2 : Indicator
    {

        [Output("MA50", Color = Colors.Red)]
        public IndicatorDataSeries MA50 { get; set; }

        [Output("MA100", Color = Colors.Green)]
        public IndicatorDataSeries MA100 { get; set; }

        [Output("MA200", Color = Colors.White)]
        public IndicatorDataSeries MA200 { get; set; }

        private MarketSeries seriesdaily;

        private MovingAverage ma50;
        private MovingAverage ma100;
        private MovingAverage ma200;

        protected override void Initialize()
        {
            seriesdaily = MarketData.GetSeries(TimeFrame.Daily);
            ma50 = Indicators.MovingAverage(seriesdaily.Close, 50, MovingAverageType.Simple);
            ma100 = Indicators.MovingAverage(seriesdaily.Close, 100, MovingAverageType.Simple);
            ma200 = Indicators.MovingAverage(seriesdaily.Close, 200, MovingAverageType.Simple);
        }

        public override void Calculate(int index)
        {

            var index50 = GetIndexByDate(seriesdaily, MarketSeries.OpenTime[index]);
            if (index50 != -1)
                MA50[index] = ma50.Result[index50];

            var index100 = GetIndexByDate(seriesdaily, MarketSeries.OpenTime[index]);
            if (index100 != -1)
                MA100[index] = ma100.Result[index100];

            var index200 = GetIndexByDate(seriesdaily, MarketSeries.OpenTime[index]);
            if (index200 != -1)
                MA200[index] = ma200.Result[index200];

        }


        private int GetIndexByDate(MarketSeries series, DateTime time)
        {
            for (int i = series.Close.Count - 1; i > 0; i--)
            {
                if (time == series.OpenTime[i])
                    return i;
            }
            return -1;
        }
    }
}

 


@shrumr

shrumr
29 Jan 2019, 03:51

Can we find what went wrong? 


@shrumr

shrumr
25 Jan 2019, 00:27

I never deleted wordspace All Majors.

I refresh the ctrader web page, and All Majors came back with a default work space. 

Previosuly I was seeing the one I was building for 2-3 days, and I was able to see it on 2 different computers and networks without any issue. 


@shrumr

shrumr
24 Jan 2019, 12:54

Where did it all go? 

I spent 2 days marking 6 charts. All gone in a jiffy?

Can these online workspaces be relied at all?


@shrumr