- Home
- Forum
- cTrader News & Announcements
- Multi-symbol robots and indicators
Multi-symbol robots and indicators
Multi-symbol robots and indicators
Disappointing to see there is no multi-instrument support for back tests. Can you advise whether this functionality is likely to be available in future?
Thanks,
Bendyarm
GetSymbol Not supported for backtesting
Guys,
Will this functionality work for back testing and optimisation?
Thanks,
H
Adding an instance without a symbol
Hello there.
I want to have a robot with a single instance for listenning to some events, like `Positions.Closed` and `PendingOrders.Filled`, for example. This robot's responsibility is to create a new record on a database for each kind of event.
Is it possible to have a "symbol-less" instance?
RE: Adding an instance without a symbol
oliveira.phc said:
Hello there.
I want to have a robot with a single instance for listenning to some events, like `Positions.Closed` and `PendingOrders.Filled`, for example. This robot's responsibility is to create a new record on a database for each kind of event.
Is it possible to have a "symbol-less" instance?
For that matter, also a "timeframe-less" instance?
Hi oliveira.phc,
There is no such possibility at the moment.
Best Regards,
Panagiotis
Custom indicator multi timeframe
Hello,
Im using Renko indicator (https://ctrader.com/algos/indicators/show/1086) on a cBot for multi timeframe but i cant get the if brick is up or down in multi timeframe, only in single pair.
Where am i going wrong?
AUDCADseries = MarketData.GetSeries("AUDCAD", TimeFrame.Hour); AUDCADrenko = Indicators.GetIndicator<Renko>(AUDCADseries, AUDCADrenko.Close, RenkoPips, BricksToShow, 3, "SeaGreen", "Tomato");
Thank you
Hello,
How can i call custom indicator for multi-timeframe? 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");
Thank you!!
Hello,
How can i call custom indicator for multi-timeframe? 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");
Thank you!!
RE:
Hello,
How can i call custom indicator for multi-timeframe? 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");
Thank you!!
Hi DelTrader,
This indicator does not support custom timeframes.
Best Regards,
Panagiotis