Custom indicator (Multi-Symbols)

Created at 02 Jul 2019, 21:14
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!
DelFonseca's avatar

DelFonseca

Joined 25.06.2017

Custom indicator (Multi-Symbols)
02 Jul 2019, 21:14


Hello,

How can i call custom indicator for multi-symbol? im trying calling Renko (https://ctrader.com/algos/indicators/show/1086) with the code below but it doesn't work:
 

            AUDCADseries = MarketData.GetSeries("AUDCAD", TimeFrame.Hour);
            AUDCADrenko = Indicators.GetIndicator<Renko>(AUDCADseries, RenkoPips, BricksToShow, 3, "SeaGreen", "Tomato");

Without "AUDCADseries" works, but only in single pair

Im sorry for my English, thank you!!


@DelFonseca
Replies

DelFonseca
04 Jul 2019, 23:22

Can someone help me?

@DelFonseca

PanagiotisCharalampous
05 Jul 2019, 09:16

Hi DelTrader,

The indicator you posted does not support passing series from another timeframe. It only works on the selected timeframe.

Best Regards,

Panagiotis


@PanagiotisCharalampous

DelFonseca
08 Jul 2019, 20:26

RE:

Panagiotis Charalampous said:

Hi DelTrader,

The indicator you posted does not support passing series from another timeframe. It only works on the selected timeframe.

Best Regards,

Panagiotis

Thank you very much.

Cheers


@DelFonseca