
Topics
Replies
PanagiotisCharalampous
08 Aug 2019, 09:20
Hi apollinaire89,
Thanks for posting in our forum. Did you have any problems with the code you posted. I presume that it is only a part of the code of the cBot.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 17:21
Hi Vykuk,
Thanks for posting in our forum. It is the same issue discussed here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 14:57
Hi Darren,
We do not have an ETA yet but should be in the following weeks.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 14:52
Hi Darren,
Probably in the next major update of cTrader.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 14:27
Hi Darren,
If you play around with the time label you should get the scroll bar. In any case, this will be solved in an uncoming update of cTrader.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 12:36
( Updated at: 21 Dec 2023, 09:21 )
Hi Darren,
If you drag the time label to the middle you should get the scroll bar below the chart. Then you should be able to scroll back as much as you want. See below
Hope this helps.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 12:23
Hi Darren,
Can you explain what do you mean? cTrader loads more tick data as you scroll back in time.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Aug 2019, 10:24
Hi tanroopghuman,
Means if I am using multiple screens I have to go to the main screen every time if I have to draw a line or need any drawing tool. Are these issues getting fixed any time soon
In v3.7 we will have thes tools inside each detachable chart
And every time I log in multiple internet windows opens at the background, is that another glitch/bug in the system?
This is by design
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 17:19
Hi FireMyst,
Send us the video at community@spotware.com.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 16:54
Hi Nick,
The first highToHigh is the object you defined here
highToHigh = Indicators.GetIndicator<HighToHighMA>(periods);
The second highToHigh is its property
[Output("H to H MA")] public IndicatorDataSeries highToHigh { get; set; }
So if you have named you indicator as below
NicksIndicator = Indicators.GetIndicator<HighToHighMA>(periods);
then the code would change to
bool condition_UpSignal = NicksIndicator.highToHigh.LastValue < 0.0001;
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 15:17
Hi Nick,
Thanks for posting in our forum. Try changing the following line
bool condition_UpSignal = highToHigh.LastValue < 0.0001;
to the following
bool condition_UpSignal = highToHigh.highToHigh.LastValue < 0.0001;
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 11:43
Hi wefald,
Can you post the complete cBot code as well as screenshots demomnstrating this issue?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 11:17
Hi wefald,
Can you guide us on how to reproduce this issue?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 11:06
Hi FireMyst,
If you can send us troubleshooting information when this happens again it will help us investigate.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 10:18
Hi cbsccp,
Just visit their website.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 09:54
Hi shrumr,
This does not seem to be a cTrader issue but a Windows problem. You can try pressint Shift + Ctrl + Win + B to restart video drivers without restarting PC. Let us know if this solves the issue for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 09:46
Hi setradean,
Thanks for posting in our forum. Did you try a clean installation?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 09:44
Hi Tanroop,
Thanks for posting in our forum. The toolbar is global so you can use the toolbar on the main form of cTrader. Regarding screen ratio, there is no such setting at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2019, 09:37
Hi Ivan,
The trading sessions dispayed in the bottom corner are the known sessions of the exchanges. If the session displays inactive then it means that no major exchange is open at that time. It doesn't mean that the symbol is inactive. In this case the symbol is open for trading by the broker even if there is no active trading session at that moment. So the broker might have the symbol enabled in off session hours as well. Maybe this is what caused you the confusion.
Your second screenshot seems to be from cTrader Web not Desktop and it is obviously a bug. I will forward it to the team and let you know if we need any additional information
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Aug 2019, 09:25
Hi apollinaire89,
It seems correct to me, assuming that the rest of the cBot is correctly implemented.
Best Regards,
Panagiotis
@PanagiotisCharalampous