
Topics
Replies
PanagiotisChar
04 Oct 2023, 05:57
( Updated at: 21 Dec 2023, 09:23 )
Here is an example of drawing one of the lines on the lower panel
Chart.DrawTrendLine(objNameSydney + "_Line", startTimeSydney , ySydney , endTimeSydney , ySydney , ColorSydney , LinesThicknessSydney , LinesStyleSydney );
Chart.DrawTrendLine(objNameTokyo + "_Line", startTimeTokyo , yTokyo , endTimeTokyo , yTokyo , ColorTokyo , LinesThicknessTokyo , LinesStyleTokyo );
Chart.DrawTrendLine(objNameLondon + "_Line", startTimeLondon , yLondon , endTimeLondon , yLondon , ColorLondon , LinesThicknessLondon , LinesStyleLondon );
Chart.DrawTrendLine(objNameNewYork + "_Line", startTimeNewYork, yNewYork, endTimeNewYork, yNewYork, ColorNewYork, LinesThicknessNewYork, LinesStyleNewYork);
if (Chart.IndicatorAreas.Count > 0)
{
foreach(var area in Chart.IndicatorAreas)
{
double areaTopY = Math.Round(area.TopY, Symbol.Digits);
double areaBottomY = Math.Round(area.BottomY, Symbol.Digits);
double areaYSydney = areaBottomY + (areaTopY - areaBottomY) / 5 * 4;
area.DrawTrendLine(objNameSydney + "_Line", startTimeSydney, areaYSydney, endTimeSydney, areaYSydney, ColorSydney, LinesThicknessSydney, LinesStyleSydney);
}
}

@PanagiotisChar
PanagiotisChar
03 Oct 2023, 11:04
Hi there,
You can find an explanation of the fitness formulas below
If you don't like them you can always write your own
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:51
( Updated at: 03 Oct 2023, 10:59 )
Hi there,
You can find the requirements for the inclusion in the list below
https://help.ctrader.com/ctrader-copy/becoming-a-strategy-provider/#strategy-list
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:49
( Updated at: 03 Oct 2023, 10:59 )
Hi there,
No it is not possible
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:48
( Updated at: 03 Oct 2023, 10:59 )
Hi there,
You cannot link any account to cTrader. Your broker needs to offer the cTrader platform and cTrader accounts.
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:47
( Updated at: 03 Oct 2023, 10:59 )
Hi there,
If you are using IC Markets, then you need to use your IC Markets credentials, since they have implemented Single Sign On
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:46
( Updated at: 03 Oct 2023, 10:59 )
Can you share the complete indicator code?
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:45
( Updated at: 03 Oct 2023, 10:59 )
RE: RE: Multi Timeframe Backtesting
jataraya said:
PanagiotisChar said:
Hi there,
Multitimeframe backtesting is possible. Are you sure you are not referring to multi instance backtesting?
Hello,
in my case need for the same instance. Would be great if be able to have information from different time frame and the same bot can access different timeframe window to draw custom indicator and shapes.
Hi there,
This is possible. You can get data for any timeframe you want using MarketData.GetBars()
@PanagiotisChar
PanagiotisChar
03 Oct 2023, 05:34
( Updated at: 21 Dec 2023, 09:23 )
Hi,
Just set the SMA source to be the RSI

@PanagiotisChar
PanagiotisChar
02 Oct 2023, 06:06
( Updated at: 02 Oct 2023, 06:09 )
Hi there,
You need to draw your lines in the IndicatorArea instead.
@PanagiotisChar
PanagiotisChar
02 Oct 2023, 06:04
Hi there,
If you share some code demonstrating what you are trying to do, it would be easier for somebody to help you.
@PanagiotisChar
PanagiotisChar
02 Oct 2023, 05:59
Hi there,
It's by design. Chart trading is disabled while backtesting
@PanagiotisChar
PanagiotisChar
29 Sep 2023, 19:05
( Updated at: 29 Sep 2023, 19:07 )
Hi there,
This information is included in ProtoOASymbol message
@PanagiotisChar
PanagiotisChar
29 Sep 2023, 19:03
Hi there,
Where exactly are you looking? Can you share a screenshot?
@PanagiotisChar
PanagiotisChar
29 Sep 2023, 13:39
Hi there,
Can you share the link to the picture so that we can reproduce?
@PanagiotisChar
PanagiotisChar
29 Sep 2023, 13:34
Hi there,
Can you record a video or attach screenshots of what are you looking at?
Best regards,
@PanagiotisChar
PanagiotisChar
04 Oct 2023, 05:58
Yes, cTrader Copy is cross broker. Traders from other brokers will be able to see your strategy
@PanagiotisChar