WA
waisuklondon@gmail.com
0 follower(s) 0 following 2 subscription(s)
Replies

waisuklondon@gmail.com
13 Feb 2018, 13:04

RE:

Panagiotis Charalampous said:

Hi Elias,

It is not very clear what you are trying to do since the code you have posted seems to be a mixup of a cBot and an Indicator. If you want to call the MACD Crossover indicator in a cBot, see a simple example below.

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

namespace cAlgo
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class NewcBot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }
        private MacdCrossOver _macdCrossOver;
        
        protected override void OnStart()
        {
            _macdCrossOver = Indicators.MacdCrossOver(28,12,9);
        }

        protected override void OnTick()
        {
            
        }

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

Let me know if this is what you are looking for.

Best Regards,

Panagiotis

Hi Panagiotis 

 

Thank you for your quick reply Yeah that s what i am looking for  and it should be including the EMA ,however it should take the trade once MACD crosses ( not the first candle , it should take on second candle.) by the way it should be on different time frame as well . 

 

Warm regards, 

 

Elias


@waisuklondon@gmail.com

waisuklondon@gmail.com
13 Feb 2018, 12:35

hi Panagiotis

 

Thank you for your swift reply . Yeah precisely  i would like to access the indicator through Cbot.  It should take trade according to MACD crossover. 

I really appreciate if you could help me how  convert it to Cbot .

 

Warm regards, 

 

Elias


@waisuklondon@gmail.com