Topics
19 Oct 2012, 19:21
 3773
 4
18 Sep 2012, 14:27
 4699
 7
11 Sep 2012, 18:59
 5028
 5
07 Sep 2012, 12:27
 3745
 3
05 Sep 2012, 17:53
 6346
 6
31 Aug 2012, 16:32
 3799
 5
Replies

misado
26 Oct 2012, 11:39

2 solutions

Hi,

a mon avis there are 2 solutions to get right results:

  1. adjust the TP and SL manually (or even automatically?);
  2. put a OCO in the EA - so if one point is reached both will be closed and 2 new orders start again

What do you mean?

And as general question:

what is the best size for this system? 5 pips for SL/TP or 10, 50...?

Mike


@misado

misado
20 Sep 2012, 16:17

I've changed it but still have error 11!

//
//    The "Sample CCI Robot" will create a buy order when the Commodity Channel Index indicator crosses the  level 1, 
//    and a Sell order when the CCI indicator crosses the level -1. The order is closed be either a Stop Loss, defined in 
//    the "Stop Loss" parameter, or by the opposite CCI crossing signal (buy orders close when CCI crosses the -1 level 
//    and sell orders are closed when CCI crosses the 1 level). 
//
//    The robot can generate only one Buy or Sell order at any given time.
//
// -------------------------------------------------------------------------------------------------

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

namespace cAlgo.Robots
{
    [Robot]
    public class CCIRobot : Robot
    {
        [Parameter("Source")]
        public DataSeries Source { get; set; }
        
        [Parameter("Periods", DefaultValue = 21)]
        public int Periods { get; set; }

        [Parameter("Stop Loss (pips)", DefaultValue = 10)]
        public int StopLoss { get; set; }

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

        private Position position;        
		private CommodityChannelIndex cci;

        protected override void OnStart()
        {
            cci = Indicators.CommodityChannelIndex(Periods);
        }

       protected override void OnTick()
       {
            if (Trade.IsExecuting) return;

            if (cci.Result.LastValue > 1 && (_position == null || _position.TradeType == TradeType.Sell))
		{
			OpenPosition(TradeType.Buy);
		}
			if (cci.Result.LastValue < -1 && (_position == null || _position.TradeType == TradeType.Buy))
		{
          OpenPosition(TradeType.Sell);
		}
       }

        private void OpenPosition(TradeType command)
        {
            if (position != null)
            {
                Trade.Close(position);
                position = null;
            }

                Trade.CreateMarketOrder(command, Symbol, Volume);
        }

        protected override void OnPositionOpened(Position openedPosition)
        {
            position = openedPosition;
            Trade.ModifyPosition(openedPosition, GetAbsoluteStopLoss(openedPosition, StopLoss), 1);
        }
		{
            position = openedPosition;
            Trade.ModifyPosition(openedPosition, GetAbsoluteStopLoss(openedPosition, StopLoss), -1);
        }
        private double GetAbsoluteStopLoss(Position position, int stopLossInPips)
        {
            return position.TradeType == TradeType.Buy
                ? position.EntryPrice - Symbol.PipSize * stopLossInPips
                : position.EntryPrice + Symbol.PipSize * stopLossInPips;
        }
    }
}




@misado

misado
19 Sep 2012, 22:40

Hi, my attempt is:

Buy when cci >1 and

Sell when cci < -1

I've tried to change some items but still need your help. Its quit strange for me.

Thanks mike


@misado

misado
18 Sep 2012, 14:20

Hi daemon,

thats it thanks again.

Mike


@misado

misado
14 Sep 2012, 12:11

Hi, thanks for the work and your support.

Do you think the THV Coral is also possible? That would be great.

Thanks Mike


@misado

misado
11 Sep 2012, 18:45

Hi,

it works, thanks

Mike


@misado

misado
05 Sep 2012, 14:11

Hi,

it works. Thanks again.


@misado

misado
05 Sep 2012, 12:14

Hi

thanks a lot for your fast and good support.

First item why calgo works so slowly: "How many instances of indicator/robots have you got opened at the same time?" - Exactly that was the problem, now its solved and calgo works absolutely perfect.

Second item: The double indi works fine and the logic behind seems to me much more easiert than mt4.

 

Another question:

I've downloaded the indi "AdaptiveCG" but I can't compile it, so it doesn't work!?


@misado