Replies

HexDex
22 Sep 2022, 14:59 ( Updated at: 21 Dec 2023, 09:22 )

RE:

PanagiotisCharalampous said:

Hi HexDex,

Add the namespace in the using section.

Best Regards,

Panagiotis 

Join us onTelegram andFacebook

RESOLVED now. Thanks heaps for the help


@HexDex

HexDex
22 Sep 2022, 13:31 ( Updated at: 22 Sep 2022, 13:33 )

RE:

PanagiotisCharalampous said:

Hi HexDex,

You don't seem to reference the Indicator's namespace

namespace cAlgo.Indicators
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class MyZigZag:Indicator
    {

inside the cBot

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

Best Regards,

Panagiotis 

Join us onTelegram andFacebook

Hi,

 

Sorry, I don't get you, what am I missing exactly? Could you elaborate on how to fix it?

What code should I add to cBot/Indicator to rectify the issue?

Cheers


@HexDex

HexDex
21 Sep 2022, 15:46

RE:

PanagiotisCharalampous said:

Hi HexDex,

As far as I can see the indicator is called Kamz and not MyZigZag.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

Hi,

 

You are right but that was me posting the code before renaming it. I updated the code in the first post but the same problem persists to exist. 


@HexDex