Nested Class Robot.ExecuteMarkerOrder

Created at 08 Apr 2018, 14:06
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
MA

mariushc

Joined 08.04.2018

Nested Class Robot.ExecuteMarkerOrder
08 Apr 2018, 14:06


I currently have a problem with the following.

 

I have code in which i use nested classes extensively.

And inside the nested classes are a lot of code making a lot of decisions.

However if i try to call ExecuteMarkerOrder from within the nested class i get nullpointerexception.

i've tried to pass symbol through the constructors to the nested classes without any success.

ExecuteMarketOrder(TradeType.Buy, symbol, 10000);

The problem seems to be with the Symbol/MarketData interface wich seems to be out of scope in the nested class.

 

Can you guys help or point me to someone that can possibly help me with this issue.

 

 

Regards

Marius

 

 


@mariushc
Replies

mariushc
09 Apr 2018, 09:55

RE:
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
using cAlgo.API.Requests;

namespace cAlgo
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class NewBot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }
        //
        int icnt = 0;
        //
        protected override void OnStart()
        {

        }

        protected override void OnTick()
        {
            //
            try
            {

                //mySymbol xxx = new mySymbol(Symbol);
                //TradeResult tr = ExecuteMarketOrder(TradeType.Buy, xxx, 10000, "test", null, 10);
                Level1 lvl1 = new Level1(Symbol, MarketData);

            } catch (Exception ex)
            {
                Console.WriteLine("Error");
            }
            //
            //
            // Put your core logic here
        }

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

        internal class Level1 : Robot
        {
            public Level1(Symbol sss, MarketData md)
            {
                //
                double xxx = sss.Ask;
                MarketData market1 = md;
                Symbol symbol1 = market1.GetSymbol("EURUSD");
                //
                try
                {
                    cAlgo.API.Requests.MarketOrderRequest mor = new MarketOrderRequest(TradeType.Buy, 10000);

                    Trade.CreateBuyMarketOrder(symbol1, 10000);
                    Trade.Send(mor);

                } catch (Exception ex)
                {
                    Console.WriteLine("error");
                }
            }


        }
    }

}

mariushc said:

Sorry guys some code to explain the problem.

Regards

Marius

 

 

 


@mariushc