Topics
27 Jun 2021, 12:55
 1693
 4
07 May 2019, 10:43
 2324
 5
20 Feb 2019, 08:42
 1252
 3
20 Feb 2019, 08:38
 1200
 4
Replies

sifneos4fx
04 Jun 2018, 11:07

RE:

In version 2, moving mouse over the account did show an "x" to remove account. So this functionality is gone? 

Panagiotis Charalampous said:

Hi Patrick,

If you want your accounts to be removed, you should contact your broker.

Best Regards,

Panagiotis

 


@sifneos4fx

sifneos4fx
03 Jun 2018, 08:04

RE:

Hi Panagiotis, 

Now, with cTrader 3.0, warning remains, even after deletion of the DLLs!

Any suggestions?

Best, 

Patick

 

Panagiotis Charalampous said:

 

Hi Patrick,

In order to fix this issue, go to C:\Users\username\Documents\cAlgo\API and delete the contents of this folder.

Best Regards,

Panagiotis

 


@sifneos4fx

sifneos4fx
20 May 2018, 17:56

That did the magic!

Thanks!

Patrick


@sifneos4fx

sifneos4fx
30 Apr 2018, 19:11

RE:

Hi Panagioti

In my case it is not the case, my prevous demo accounts are not listed within cTRader 3 Beta, I am also not able to sign in manually with one of me demo accounts. why?

Best,

Patrick

 

Panagiotis Charalampous said:

Hi amsman,

If the account is a Spotware cTrader demo account then you can open it. If you login with your cTID to the new Spotware cTrader Beta, you should be able to see all your previous accounts listed.

Best Regards,

Panagiotis

 


@sifneos4fx

sifneos4fx
09 Mar 2018, 10:09

You fix it! Yeah!!!!! 

You also open a bit space bwtween single candles, this way, it is easier to read the chart. 

 

GREAT WORK!!!!

 

 


@sifneos4fx

sifneos4fx
25 Feb 2018, 19:23

RE:

Dude, there is no bugless software, maybe in a perfect world :) Instead be thankfull for the great software spotware is providing us. This is a major bug, they will fix asap, you will see!

 

EthanY said:

Very irresponsible to do maintenance or server crash or whatever it is because spotware systems fail to do update and prep us ahead for such. We are talking about monetary which could be our livelihood too.

 


@sifneos4fx

sifneos4fx
10 Feb 2018, 11:14

RE:

Great! Looking forward to that release :)

 

Panagiotis Charalampous said:

Hi patrick.sifneos@gmail.com,

The issue has been fixed in our internal builds, the fix will be there with the next release. We have a very rigirous QA process and releases are composed of several new features and bug fixes, most of them interrelated. We will release as soon as we make sure that everything is working properly. In other words, we do not fix bugs one by one on the live server :). 

Best Regards,

Panagiotis

 


@sifneos4fx

sifneos4fx
07 Feb 2018, 19:30

RE:

Dear Panagioti

Unfortunately, the ask price line which is not hidable, make the web trader useless for scalping. There is no ETA for such a simple bug, this is a 5 mintes just bro. Please fix it! :)

 

Best, 

Patrick

 

Panagiotis Charalampous said:

Hi Patrick,

Thanks for letting us know. We are aware of this issue and it is going to be resolved in a future update of cTrader Web.

Best Regards,

Panagiotis

 


@sifneos4fx

sifneos4fx
31 Jan 2018, 12:49 ( Updated at: 21 Dec 2023, 09:20 )

RE:

This is a prototype of scalping Bot.

Rules:

  • Timeframe: 1 Minute. May also work on 5 minutes 
  • Stochastic K% < 20 and Stochastics K% > Stochastics D%
  • Stochsastic K% should rising
  • RSI should rising
  • Close on Stochsatics K% > 80

Play with parameters ans let me know what you think.

 

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

namespace cAlgo
{
    [Robot(TimeZone = TimeZones.CentralEuropeanStandardTime, AccessRights = AccessRights.None)]


    public class NewcBot : Robot
    {
        private MovingAverage EMA_Fast;
        private MovingAverage EMA_Slow;
        private StochasticOscillator Stochastics;
        private RelativeStrengthIndex RSI;

        protected override void OnStart()
        {
            EMA_Fast = Indicators.ExponentialMovingAverage(MarketSeries.Close, 50);
            EMA_Slow = Indicators.ExponentialMovingAverage(MarketSeries.Close, 100);
            Stochastics = Indicators.StochasticOscillator(9, 3, 9, MovingAverageType.Exponential);
            RSI = Indicators.RelativeStrengthIndex(MarketSeries.Close, 14);
        }

        protected override void OnTick()
        {
            if ((Server.Time.Hour > 17) && (Server.Time.Hour < 22))
                return;

            if ((NoOrders()) && (RSI.Result.IsRising()) && (EMA_Fast.Result.LastValue > EMA_Slow.Result.LastValue) && (EMA_Fast.Result.IsRising()) && (Stochastics.PercentK.IsRising()) && (Stochastics.PercentK.LastValue < 20) && (Stochastics.PercentK.LastValue > Stochastics.PercentD.LastValue))
            {
                ExecuteMarketOrder(TradeType.Buy, Symbol, 100000, "Stochastics Scalping", 10, 12);
            }

            if ((Stochastics.PercentK.LastValue > 80))
            {
                foreach (Position pos in Positions)
                {
                    if (pos.SymbolCode == Symbol.Code)
                        ClosePosition(pos);
                }
            }
        }

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

        bool NoOrders()
        {
            foreach (Position pos in Positions)
            {
                if (pos.SymbolCode == Symbol.Code)
                    return false;
            }

            foreach (PendingOrder po in PendingOrders)
            {
                if (po.SymbolCode == Symbol.Code)
                    return false;
            }

            return true;
        }
    }
}

 

Drummond360 said:

If you liked those results check out this little weapon!

 

 


@sifneos4fx

sifneos4fx
31 Jan 2018, 10:28

RE:

Dude, that cBot is awesome, what is the strategy? Stochastics and MA50 and MA100? Do you close on specific PIPs or on specific indicator value?

 

Drummond360 said:

Yes, I dissproved these results, here's a quick summary;

These results are backtested on 1 minute bars. As this form of backtesting only respects the open price the back test assumed that my trailing stop was always honoured at the 5 pip level it was set to, however Tick data testing showed that my trailing stop was being hit well before the next bar opened and actaully returning a loss more often than a profit...

I'll be testing everything with Tick data from now on!

Drummond

 

 


@sifneos4fx

sifneos4fx
25 Jan 2018, 10:49

cTrader rocks!!!


@sifneos4fx

sifneos4fx
24 Jan 2018, 14:29

RE:

Excellent!

Yeah, "spotware" user exists since 2013! Standard drupal forum functionaliy, sorry, my bad. 

 

Panagiotis Charalampous said:

Hi patrick.sifneos@gmail.com,

Yes it is going to happen. By the way the post is since Aug 2017 and not since 2013.

Best Regards,

Panagiotis

 

 


@sifneos4fx

sifneos4fx
24 Jan 2018, 06:53

Mates, parallels is doing the magic -> https://www.parallels.com/products/desktop/


@sifneos4fx

sifneos4fx
18 Jan 2018, 18:41

Yeah, actually it is a major bug, as it makes web trader quite useless. I cant use webtrader any more.


@sifneos4fx

sifneos4fx
17 Jan 2018, 17:37

RE: Looks great...

Any news here? Is this in pipeline or is kicked off?

patrick.sifneos@gmail.com said:

Dear Spotware Team

The analyzing tool looks great, but where is it? you annonced almost 4 years ago. Do I miss somthing?

 


@sifneos4fx

sifneos4fx
17 Jan 2018, 17:34

Use Parallels

cTrader and cAlgo will look and feel like if you would run them under osx. CMD+TAB will cucle throught all open Mac and Windows applications. You can run several windows installation on one Mac. For me, perfect solution.

https://www.parallels.com/

Best,

Patrick


@sifneos4fx

sifneos4fx
15 Jan 2018, 16:43

RE:

Thanks Panagioti :)

Panagiotis Charalampous said:

Dear Patrick,

Thanks for taking the time to bring up this subject. This idea is already in the backlog for some time now and I have communicated with the product team to push the priority a bit more since it seems there is demand for this feature. Hopefully we will see this in one of the future releases of cTrader.

Best Regards,

Panagiotis

 

 


@sifneos4fx

sifneos4fx
11 Jan 2018, 12:02

Looks great...

Dear Spotware Team

The analyzing tool looks great, but where is it? you annonced almost 4 years ago. Do I miss somthing?


@sifneos4fx

sifneos4fx
10 Jan 2018, 09:43 ( Updated at: 10 Jan 2018, 09:44 )

Any feedback here by spotware?


@sifneos4fx

sifneos4fx
10 Jan 2018, 09:41

I m still not ebale to reassign shortcuts. Textboxes are not editable. I am able to selct the contnte of the textboxes, however i cant do any change. I try also the virtual keyboard, nothing.


@sifneos4fx