Category Trend  Published on 27/06/2015

Zelphin Scalper II

Description

programme original de Mark Jensen Zelphin Scalper

Author : Abdallah HACID

Solution Visual studio

 

Uses simple moving average and stochastic oscillator to find a good trade opportunity

tested using GBPUSD symbol and 5m chart.

    Symbole            =    GBPUSD
    Timeframe        =    m5

    Source            =    Open
    Period            =    35
    Volume            =    100k

    TakeProfit        =    300
    StopLoss        =    53
    TrailStart        =    29
    Trail            =    3

    MaType            =    Exponential
    K Period        =    5
    D Period        =    3
    K Slowing        =    3

    Results :
          Resultats            =    entre le 01/04/2011 et 17/7/2014 a 19:00 gain de 5303 euros(+11%).
            Net profit            =    5303,01 euros
            Ending Equity        =    5303,01 euros
            Ratio de Sharpe        =    0.13
            Ratio de Storino    =    0.17

///////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                              Use at own risk
///////////////////////////////////////////////////////////////////////////////////////////////////////////////

Ne pas oublier de changer

      la Source en Open,

      le timeframe en m5,

      le MaType en Exponentiel.


#region Licence
//The MIT License (MIT)
//Copyright (c) 2014 abdallah HACID, https://www.facebook.com/ab.hacid

//Permission is hereby granted, free of charge, to any person obtaining a copy of this software
//and associated documentation files (the "Software"), to deal in the Software without restriction,
//including without limitation the rights to use, copy, modify, merge, publish, distribute,
//sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
//is furnished to do so, subject to the following conditions:

//The above copyright notice and this permission notice shall be included in all copies or
//substantial portions of the Software.

//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
//BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
//NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
//DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// Project Hosting for Open Source Software on Codeplex : https://calgobots.codeplex.com/
#endregion

#region cBot Infos
// -------------------------------------------------------------------------------
//
//		programme original de Mark Jensen Zelphin Scalper http://ctdn.com/algos/cbots/show/429
//		modifie par Abdallah Hacid, https://www.facebook.com/ab.hacid 
//
//		Zelphin Scalper II (17 Juillet 2014)
//		version 2.2014.07.17
//		Author : https://www.facebook.com/ab.hacid
//
//		Uses simple moving average and stochastic oscillator to find a good trade opportunity
//		tested using GBPUSD symbol and 5m chart.
//
// -------------------------------------------------------------------------------
#endregion

#region cBot Parameters Comments
//	Symbole			=	GBPUSD
//	Timeframe		=	m5
//
//	Source			=	Open
//	Period			=	37
//	Volume			=	100k
//
//	TakeProfit		=	300
//	StopLoss		=	53
//	TrailStart		=	29
//	Trail			=	3
//
//	MaType			=	Exponential
//	K Period		=	5
//	D Period		=	3
//	K Slowing		=	3
//
//	Results :
//          Resultats			=	entre le 01/04/2011 et 17/7/2014 a 19:00 gain de 5303 euros(+11%).
//			Net profit			=	5303,01 euros
//			Ending Equity		=	5303,01 euros
//			Ratio de Sharpe		=	0.13
//			Ratio de Storino	=	0.17
#endregion

#region advertisement
// -------------------------------------------------------------------------------
//			Trading using leverage carries a high degree of risk to your capital, and it is possible to lose more than
//			your initial investment. Only speculate with money you can afford to lose.
// -------------------------------------------------------------------------------
#endregion


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 ZephynScalperII : Robot
    {
        #region Prameters
        [Parameter("Source SMA")]
        public DataSeries Source_SMA { get; set; }

        [Parameter("Periods SMA", DefaultValue = 37)]
        public int Periods_SMA { get; set; }

        [Parameter("Volume", DefaultValue = 100000, MinValue = 10000)]
        public int Volume { get; set; }

        [Parameter("TakeProfit", DefaultValue = 300, MinValue = 1)]
        public int TakeProfit { get; set; }

        [Parameter("Stop Loss", DefaultValue = 53, MinValue = 1)]
        public int StopLoss { get; set; }

        [Parameter("Trail start", DefaultValue = 29, MinValue = 1)]
        public int Trail_start { get; set; }

        [Parameter("Trail", DefaultValue = 3, MinValue = 1)]
        public int Trail { get; set; }

        [Parameter(DefaultValue = 1)]
        public MovingAverageType MaType { get; set; }
        // Exponential
        [Parameter("K Periods", DefaultValue = 5)]
        public int KPeriods { get; set; }

        [Parameter("D Periods", DefaultValue = 3)]
        public int DPeriods { get; set; }

        [Parameter("K Slowing", DefaultValue = 3)]
        public int K_Slowing { get; set; }
        #endregion

        #region Globals

        private SimpleMovingAverage _SMA;
        private StochasticOscillator _SOC;
        // Nom du robot
        private const string botName = "ZephynScalperII";
        private const int highCeil = 80;
        private const int lowCeil = 20;
        #endregion

        #region cBot Events
        protected override void OnStart()
        {
            base.OnStart();
            _SMA = Indicators.SimpleMovingAverage(Source_SMA, Periods_SMA);
            _SOC = Indicators.StochasticOscillator(KPeriods, K_Slowing, DPeriods, MaType);

            Positions.Closed += OnPositionClosed;


        }

        protected override void OnStop()
        {
            base.OnStop();
            closePositions();

        }

        protected override void OnTick()
        {
            foreach (var position in Positions.FindAll(botName, Symbol))
            {
                if (position.Pips > Trail_start)
                {
                    double actualPrice = isBuy(position) ? Symbol.Bid : Symbol.Ask;
                    int factor = isBuy(position) ? 1 : -1;

                    double? newStopLoss = position.StopLoss;

                    // Stop a ZERO
                    if ((position.EntryPrice - newStopLoss) * factor > 0)
                        newStopLoss = position.EntryPrice;

                    if ((actualPrice - newStopLoss) * factor > Trail * Symbol.PipSize)
                    {
                        newStopLoss += factor * Trail * Symbol.PipSize;

                        if (newStopLoss != position.StopLoss)
                            ModifyPosition(position, newStopLoss, position.TakeProfit.Value);
                    }
                }
            }


            if (!isBuyPositions && isSOCBuySignal)
            {
                closePositions(TradeType.Sell);
                Open(TradeType.Buy);
            }
            else if (!isSellPositions && isSOCSellSignal)
            {
                closePositions(TradeType.Buy);
                Open(TradeType.Sell);
            }


        }

        private void OnPositionClosed(PositionClosedEventArgs args)
        {
        }
        #endregion

        #region cBot Action
        private void Open(TradeType tradeType)
        {
            ExecuteMarketOrder(tradeType, Symbol, Volume, botName, StopLoss, TakeProfit);
        }

        private void closePosition(Position position)
        {
            var result = ClosePosition(position);

            if (!result.IsSuccessful)
                Print("error : {0}", result.Error);

        }

        // Cloture toutes les positions de type "tradeType"
        private void closePositions(TradeType tradeType)
        {
            foreach (Position position in Positions.FindAll(botName, Symbol, tradeType))
                closePosition(position);

        }

        // Cloture toutes les positions ouvertes
        private void closePositions()
        {
            closePositions(TradeType.Buy);
            closePositions(TradeType.Sell);
        }
        #endregion

        #region cBot Predicate

        private bool isSOCBuySignal
        {
            get { return (_SMA.Result.LastValue < Symbol.Bid) && (_SOC.PercentD.LastValue < lowCeil) && (_SOC.PercentK.LastValue < lowCeil) && (_SOC.PercentK.LastValue > _SOC.PercentD.LastValue); }
        }


        private bool isSOCSellSignal
        {
            get { return (_SMA.Result.LastValue > Symbol.Ask) && (_SOC.PercentD.LastValue > highCeil) && (_SOC.PercentK.LastValue > highCeil) && (_SOC.PercentK.LastValue < _SOC.PercentD.LastValue); }
        }

        private bool isBuy(Position position)
        {
            return TradeType.Buy == position.TradeType;
        }
        private bool isBuy(TradeType tradeType)
        {
            return TradeType.Buy == tradeType;
        }

        private bool isSell(Position position)
        {
            return TradeType.Sell == position.TradeType;
        }

        private bool isSell(TradeType tradeType)
        {
            return TradeType.Sell == tradeType;
        }

        private bool isBuyPositions
        {
            get { return Positions.Find(botName, Symbol, TradeType.Buy) != null; }
        }


        private bool isSellPositions
        {
            get { return Positions.Find(botName, Symbol, TradeType.Sell) != null; }
        }

        private bool isBuyAndSellPositions
        {
            get { return isBuyPositions && isSellPositions; }
        }
        private bool isPosition
        {
            //get { return Positions.Find(botName,Symbol)!=null; }
            get { return isBuyPositions || isSellPositions; }
        }


        private bool isNoPosition
        {
            get { return !isPosition; }
        }


        #endregion

        #region cBot Utils
        private int OpenedTrades
        {
            get { return Positions.FindAll(botName, Symbol).Count(); }
        }
        #endregion

    }
}


AY
aysos75

Joined on 28.09.2013

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ZephynScalper II.algo
  • Rating: 2.5
  • Installs: 13421
Comments
Log in to add a comment.
LP
lpackman · 11 months ago

Im new to algo trading and trading 8n general. This bot loomed like it was working great, zero loses then I discovered in back testing there is always 1 or 2 positions which do not adhere to the stop loss rule set in the settings. A shame because other than this it's the best bot I have come across. 

Can anyone recommend an alternative scalper or maybe share an updated, fully working version of this one please ???? 

Thank you!

 

 

DA
davidmwabuka · 1 year ago

Always USE TICK DATA

CH
chaiyapol.pinyoboon · 3 years ago

Hi aysos75

I really appreciate this cBot. Thank you for creating it. Its now year 2020. some of the code are absoleted. Can you or anyone update the code please.

GU
guillermo · 3 years ago

I have backtested this robot in GBPUSD M5, with the input parameters advised by the author, between 2017 and 2020, using tick data.  The robot is not profitable at all.

jani's avatar
jani · 5 years ago

I'm new to cTrader and have quite limited C# coding ability. Could someone please explain how do I update  inclusion references in the cBot code for the custom indicators?

G6
g61232 · 5 years ago

A very good automatic trading program. I am a Chinese, and my English is very poor. Thanks for giving thanks for my special translation, thanks aysos75.

CT
ctid299233 · 7 years ago

Breakermind, 11% per month is very very good, if consistent. What you see on Dukascopy are gambled results that next month might wipe your account empty.

Test and optimize this for a few years and then you can have a clearer picture.

AY
aysos75 · 9 years ago

Hi,

I do not claim to be the best, I test things out of nothing and look what happens that's it!

breakermind's avatar
breakermind · 9 years ago

I think he drew this graph in Paint ;)

breakermind's avatar
breakermind · 9 years ago

Hi,

Look at this earn in one month:

http://www.dukascopy.com/strategycontest/?language={iso2}

Do not be offended

but 11% in the one month - shame show (and here so many months)

Regards ;)