FX
fxctrader
Blocked user by Spotware at 13 Oct 2023, 04:02
0 follower(s) 0 following 15 subscription(s)
Replies

fxctrader
12 May 2022, 09:43

RE: RE:

Shulya said:

amusleh said:

Hi,

There are plenty of Volume/market profile indicators for cTrader developed by the community, you can develop one based on your own specific needs if the available ones don't have the features you are after.

You can try this one from AlgoDeveloper: https://www.algodeveloper.com/product/volume-profile/

Hello, I've already tested all of them. They're all poorly developed and lagg dramatically. Volume Profile indicator should be part of every modern trading platform. 

Actually there are just a handful or not even more than 4 or 3 perhaps 3 Volume Profile indicator available and 2 of them are either rental or paid algo. And Yes, Volume Profile "SHOULD BE" part of built in indicator for cTrader, if they really adhere to "Traders First" battlecry. Well probably in another 10 years or so they will add it on their consideration. I've seen 2 Market Profile and which is totally different from Volume Profile and they are paid algo, though the cealgo version is a better one I've tested. Nevertheless, Volume Profile should be added on next update, if they are considering the traders.


fxctrader
13 Apr 2022, 04:36

Can ADMIN help on this?

Also finding a way to determine daily DD? Any sample would be highly appreciated.

Thanks.


fxctrader
23 Sep 2021, 06:56

RE:

m4trader4 said:

Not just 500 or 1000 it should be "####.### " custom pips

I agree with this as 500 and 1000 is not just really gonna do it for BTC. 


fxctrader
23 Sep 2021, 06:56

RE:

m4trader4 said:

Not just 500 or 1000 it should be "####.### " custom pips

I agree with this as 500 and 1000 is not just really gonna do it for BTC. 


fxctrader
23 Sep 2021, 06:54

RE:

TheMC said:

Hi, I would like to suggest to implement the possibility to do optimizations and backtests also with renko charts.
Thank you.

Seems Spotware is not for traders first as they claim. So many overlooked small tools are not implemented which is I could see others can implement easily.


fxctrader
24 Aug 2021, 10:06

RE:

Thank you a thousand times :)

PanagiotisCharalampous said:

Hi fxctrader,

You can use MachineName.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


fxctrader
05 Aug 2021, 10:58

RE:

Appreciate your input, Yes I do believe that is the right step, to be familiar with C# first before jumping myself deeply into unknown. What you are doing right now is really to elevate retail trading into new level and for that kudos to you, Ahmed and others who day in, day out are there ever willing to help to noobs likes me.

I wish you more success and better, brighter future for cTrader community.

Thank you.

PanagiotisCharalampous said:

Hi fxctrader,

You are really a master on this craft. I know you want us to continue with trial and error but I think there should be a better way to learn this craft. Any recommendation you could give us besides keep reading the examples on github and indicator posted on forum.

Thanks for your comment. This is really basic programming skills and it is beyond our scope of work to teach programming to people. Our role here is to document the API, explain its uses, reply to questions and provide case specific examples as above. We are doing our best to provide all this information but if you still find it hard to locate it, feel free to ask and we will reply. To master this craft yourself, you need to become a good programmer first. And there is a ton of resources there to help you do so.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


 

 


fxctrader
05 Aug 2021, 10:32

RE:

You are really a master on this craft. I know you want us to continue with trial and error but I think there should be a better way to learn this craft. Any recommendation you could give us besides keep reading the examples on github and indicator posted on forum. 

As always, I truly appreciate your help.

amusleh said:

Hi,

Try this:

using cAlgo.API;
using cAlgo.API.Indicators;

namespace cAlgo.Indicators
{
    [Indicator(IsOverlay = false, AccessRights = AccessRights.None)]
    public class DMIHISTOBAR : Indicator
    {
        private DirectionalMovementSystem _adx;

        [Parameter("ADX Period", DefaultValue = 2, MinValue = 1, MaxValue = 60)]
        public int ADXPeriod { get; set; }

        [Output("Bullish", LineColor = "Blue", PlotType = PlotType.Histogram, Thickness = 4)]
        public IndicatorDataSeries Bullish { get; set; }

        [Output("Bearish", LineColor = "Red", PlotType = PlotType.Histogram, Thickness = 4)]
        public IndicatorDataSeries Bearish { get; set; }

        protected override void Initialize()
        {
            _adx = Indicators.DirectionalMovementSystem(ADXPeriod);
        }

        public override void Calculate(int index)
        {
            Bullish[index] = double.NaN;
            Bearish[index] = double.NaN;

            if (_adx.DIPlus[index] > _adx.DIMinus[index])
            {
                Bullish[index] = _adx.ADX[index];
            }
            else
            {
                // Remove the - (minus) if you want to show both outputs in positive above zero line
                Bearish[index] = -_adx.ADX[index];
            }
        }
    }
}

 

 


fxctrader
24 Jul 2021, 13:06

RE:

Thank you!!!! :)

amusleh said:

Hi,

Try to set the vertical line IsInteractive property to True.

 


fxctrader
13 Dec 2020, 15:24

RE: RE:

lisabeaney said:

paralaxion said:

Hello All, 

Is there a simple way to licence a cBot, so i.e. the bot would run only on buyers account or buyers machine?

Thank you 

Patrick

 

Yes, you can read the processor ID and then create a hash code from it. Write it to a text file and then check the contents of that file when your BOT runs...

The problem I've run in to licensing a single account is that people quite often have 2 or 3 demo accounts that they use for testing and then a different account for live trading... it can end up a bit messy !

I've ended up writing a licensing BOT that sends the request through to me and then I email the license code to the user, they copy & paste the code in to the License BOT and re-run it to generate the text file that contains the code. Any other BOTS you write can then check the contents of this file.

Hi Lisa, do you mind to share the source code for your licensing bot? Just need some reference. Many thanks.