
Topics
Replies
PanagiotisCharalampous
13 Dec 2018, 10:26
Hi dmn,
Unfortunately we cannot reproduce your issue. Would you be available for TeamViewer session so that somebody from our QA team can check this in your computer?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2018, 10:24
Hi arron3@gmail.com,
See an example below
var rsim15 = Indicators.RelativeStrengthIndex(MarketData.GetSeries(TimeFrame.Minute15).Close, Period); var rsim30 = Indicators.RelativeStrengthIndex(MarketData.GetSeries(TimeFrame.Minute30).Close, Period);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2018, 10:03
Hi jasson gu,
Here is an example
for (int i = 1; i <= 10; i++) { PlaceLimitOrder(TradeType.Buy, Symbol, 1000, Symbol.Ask - (50 * i * Symbol.PipSize)); }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2018, 09:53
Hi oliveira.phc,
A workaround is to get the timeframe as a parameter. See below
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo.Robots { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewcBot : Robot { [Parameter] public TimeFrame Timeframe { get; set; } protected override void OnStart() { var t = MarketData.GetSeries(Timeframe); } protected override void OnTick() { } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 17:21
( Updated at: 21 Dec 2023, 09:21 )
Hi tgjobscv,
The link you posted does not seem to work. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 11:47
Hi Vitaly,
Yes you can. See an example below
Chart.DrawTrendLine("test", Server.Time.AddHours(-24), 1.14, Server.Time, 1.13, Color.Red); Chart.IndicatorAreas[0].DrawTrendLine("test", Server.Time.AddHours(-24), 0, Server.Time, 100, Color.Red);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 11:26
Hi fxwisdom1@gmail.com,
I still cannot reproduce this. Can you please tell us your broker? A short video would also be helpful.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 11:07
Hi arron3@gmail.com,
Thanks for posting in our forum. You can find all open positions in Positions collection and all pending orders in PendingOrders collection.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 10:50
Hi Henry,
They should be but please check as well and let us know.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 10:48
Hi fxwisdom1@gmail.com,
Which broker do you use? I cannot reproduce this behavior on Spotware cTrader Beta.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2018, 10:27
Hi fxwisdom1@gmail.com,
Period separators for D1 timeframe are set on each month change. What you see is probably the grid. Can you try changing you grid color?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 17:50
Ηi sean.n.long,
We managed to reproduce the problem and we will fix it in the next update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 15:17
Hi netread2004,
Ask price 1.26184 is provided by entry with ID 156430417. 35=X has no instruction to delete entry id 156430417. In instructs you to delete only 156430419 and 156430416. Why do you delete it?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 13:52
Hi Anghenly,
We have released an update today that should fix the issue we discovered during our TeamViewer session.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 12:16
Hi dmn,
Thanks, we received and we are checking.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 12:14
Hi Eduardo,
Thanks for the clarifications. Now I understand what the issue is. You do not see any mirroring options because they appear only after you start mirroring a strategy. Based on the first screenshot you sent your live accounts are not mirroring any strategy yet, at least in cMirror. If you have started copying a strategy in cTrader Copy then you need to use cTrader Copy to change the copying settings or stop copying.
PS: You can stop providing the strategy from your live account.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 11:02
Hi netread2004,
I do not see the 35=W message which should have been the full snapshot. 35=X is just additions and deletions on the full snapshot so it doesn't give the full picture.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 10:51
Hi irmscher9,
Thanks we will check this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2018, 10:50
Hi dmn,
Can you send in at community@spotware.com. You can use WeTransfer to send it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2018, 12:14
Hi fxwisdom1@gmail.com,
Thanks for the video. We managed to reproduce the issue and we will fix it.
Best Regards,
Panagiotis
@PanagiotisCharalampous