Topics

Forum Topics not found

Replies

slmberglund
18 Jun 2020, 18:18

RE:

Hi Panagiotis,

To clarify:

- Would this solution enable me to reference the t50 "time"series in a robot trading on the t100 chart?

- If not, is there any way I could build such capability in my robot?

- Is Spotware planning to release the capability to reference different tick-series bars in the robots/indicators?

Many thanks

Markus 

 

PanagiotisCharalampous said:

Hi mizo.rakkii,

You can not use Ticks as an input to a SimpleMovingAverage. The method takes only DataSeries as an input. The only workaround to this is to get the timeframe as a parameter. See below an example

        [Parameter()]
        public TimeFrame Timeframe { get; set; }

        protected override void OnStart()
        {
            var sma1 = Indicators.SimpleMovingAverage(MarketData.GetBars(Timeframe, Symbol.Name).ClosePrices, 20);
        }

Best Regards,

Panagiotis 

Join us on Telegram

 


@slmberglund

slmberglund
09 May 2020, 22:50

RE: RE: Absolutely fabulous

PanagiotisCharalampous said:

bishbashbosh said:

...news that multi-symbol back-testing has been released - look forward to testing that. Second the comment above that it would be incredibly useful to be able to see a chart per symbol traded - perhaps something to stick on the dev list, or should we create another suggestion?

Re. the economic calendar - is there an API for that, so that we can access this data from within bots? Just had a quick search and couldn't find anything.

Cheers and happy new year!

Hi bishbashbosh,

The calendar is not available via the API.

Best Regards,

Panagiotis 

Join us on Telegram

 

Is there a plan to make this available via the API? It would be incredibly useful!


@slmberglund

slmberglund
12 Sep 2016, 16:58

RE:

Spotware said:

Dear Trader,

There is no plans to include Autochartist to cAlgo.API.

Hi, 

Still no plans to include Autochartist to cAlgo.API?

 

Thanks


@slmberglund