Topics
Replies
PanagiotisCharalampous
13 May 2020, 14:08
Hi goharlkhilji,
Can you please tell us the strategy name and post some screenshots showing that the position is closed on the strategy provider's account but still open on the subaccounts?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 13:00
Hi lordyy,
Here it is.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 12:12
Hi morassut.s,
I cannot reproduce such a behavior. Can you share a video with us demonstrating this so that we can see the exact steps you follow and see what you are seeing as well?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 11:58
Hi morassut.s,
I deleted it because it was not a suggestion but a question. Please post it in the correct topic.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 11:48
Hi share.axp,
There in no ETA for this feature at the moment. Demo account based strategies do not allow charging fees.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 11:46
Hi Artur,
Can you please send us your password at community@spotware.com so that we can reproduce this issue?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 11:44
Hi stannekuba,
No this is not possible. There is no such layout available.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 10:05
Hi ZuniSoft,
Just use the Group attribute. See below an example
[Parameter("Enabled", Group = "Take Profit 1", DefaultValue = false)]
public bool TakeProfit1Enabled { get; set; }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 10:03
Hi Valter,
If you need somebody to develop this cBot for you, you can contact a Consultant or post a Job.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 10:00
Hi Marek,
cAlgo converters are not managed by Spotware hence we cannot help you much with this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:57
Hi there,
Pepperstone does not offer cTrader Copy at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:55
Hi ergun,
No we do not have a public timeline available.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:49
Hi there,
Can you please provide us with more information? We need
1) Your trading account number
2) The name of the strategy you are trying to follow.
3) Some screenshots demonstrating the problem and the messages you receive.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:44
Hi share.axp,
There is no such option at the moment but we plan to add this in a future update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:39
Hi ergun,
No there is no way at the moment. We will add this feature in a future update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:37
( Updated at: 13 May 2020, 10:09 )
Hi morassut.s,
Please post this question in the correct topic. I will delete this thread in a while.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 09:34
Hi rgasch,
Thanks. To fix this just mark the ColorData parameter with an OutputAttribute. See below
using System;
using cAlgo.API;
using cAlgo.API.Indicators;
namespace cAlgo.Indicators
{
[Indicator(IsOverlay = true, AccessRights = AccessRights.None)]
public class TestIndicator : Indicator
{
private MovingAverage _ma;
[Parameter("MA Period", DefaultValue = 34)]
public int maPeriod { get; set; }
[Parameter("MA Type", DefaultValue = MovingAverageType.Weighted)]
public MovingAverageType MAType { get; set; }
[OutputAttribute("Moving Average", LineColor = "Red", LineStyle = LineStyle.Lines)]
public IndicatorDataSeries MaResult { get; set; }
[OutputAttribute("Color Data")]
public IndicatorDataSeries ColorData { get; set; }
protected override void Initialize()
{
_ma = Indicators.MovingAverage(Bars.ClosePrices, maPeriod, MAType);
}
public override void Calculate(int index)
{
var color = Color.White;
var open = Bars.OpenPrices[index];
var high = Bars.HighPrices[index];
var low = Bars.LowPrices[index];
var close = Bars.ClosePrices[index];
var maValue = _ma.Result[index];
MaResult[index] = maValue;
ColorData[index] = open > close ? -1 : 1;
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 May 2020, 15:12
Hi rgasch,
To advise further we will need a workable version of the indicator that we can use.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 May 2020, 15:06
Hi testpossessed,
A workaround is to use a timeframe as a parameter and choose Renko bars from there. See below and example
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(DefaultValue = 0.0)]
public TimeFrame Parameter { get; set; }
protected override void OnStart()
{
var bars = MarketData.GetBars(Parameter);
Print(bars.Count);
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2020, 14:13
Hi Symposium,
Here it is
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous