How long will it take until the new version is released, with which MAC users can also access 'Backtesting' and 'Optimization' in the 'Automate' application?
hello, I have downloaded this on my Mac, but I can not find the backtesting tab its non existent. I've even deleted the application and downloaded a new one. can you help me please?
Hi there,
These features will come in a later version.
Best regards,
Panagiotis
thank you for the reply, will this also include being able to add c bots from the download site
Hi there,
You should be able to run cBots in real time mode with the current version.
Best regards,
Panagiotis
Hi there,
There is no ETA at the moment but the team is currently working on these features.
Please send us some troubleshooting info and quote the link to this discussion by pasting a link to this discussion inside the text box before you submit it.
Best Regards,
Panagiotis
OK I sent!
I wait for a response!
Tks!
I think it's a problem related to the new accounts (DEMO (possibly?!?!?!)).
No matter if I have newly opened account on spotware, topfx, icmarkets... The problem is the same... I cannot do backtesting tests without checking the VISUAL box, or in the optimization tab.
I asked a friend to log in into my computer with his older account and everything seems to be working normally. (So, it is not a computer problem !!!)
If I log in, with my account (which is a newer account than his) backtesting and optimization no longer work.
Do you have a solution to this problem? Please if you have to post it, I am bored of writing... monologue!
Thanks!
Hi,
As explained above, this issue will be resolved in an upcoming update. We do not have any other solution at the moment. If you have found a workaround i.e. using a different account, then you could use it.
i know how to colorize the outline. but it only colors the wicks instead the outlines of the Candle-body. Like you see in my example: i colored the outlines in black, but the candel-body is still blue.
on other platformes it colors the wicks AND the candle outlines.
I am really lazy figuring out why your code does not work therefore I am quoting some code that has been tested and runs well
[Parameter("Use Trailing Stop", DefaultValue = false, Group = "Trailing Stop Loss")]
public bool UseTSL { get; set; }
[Parameter("Trigger (pips)", DefaultValue = 20, Group = "Trailing Stop Loss")]
public int TSLTrigger { get; set; }
[Parameter("Distance (pips)", DefaultValue = 10, Group = "Trailing Stop Loss")]
public int TSLDistance { get; set; }
protected override void OnTick()
{
// If Trailing Stop Loss is set to true, then we execute the following code block
if (UseTSL)
{
// we iterate through all the instance's positions
foreach (var position in Positions.Where(x => x.Label == Instance))
{
// If position's pips is above the trailing stop loss pips and the position has not trailing stop loss set
if (position.Pips > TSLTrigger && !position.HasTrailingStop)
{
// We check the position's trade type and excute the relevant code block
if (position.TradeType == TradeType.Buy)
{
// We calculate the stop loss based on the TSL Distance To Add parameter
var stopLoss = Symbol.Bid - (TSLDistance * Symbol.PipSize);
// We modify the stop loss price
position.ModifyStopLossPrice(stopLoss);
// We set the trailing stop loss to true
position.ModifyTrailingStop(true);
Print("Trailing Stop Loss Triggered");
}
else
{
// We calculate the stop loss based on the TSL Distance To Add parameter
var sl = Symbol.Ask + (TSLDistance * Symbol.PipSize);
// We modify the stop loss price
position.ModifyStopLossPrice(sl);
position.ModifyTrailingStop(true);
Print("Trailing Stop Loss Triggered");
}
}
}
}
}
PanagiotisCharalampous
06 Feb 2024, 07:46
Hi there,
You can achieve this using a cBot. Here is an example you could use
https://clickalgo.com/data-export-tool
Best regards,
Panagiotis
@PanagiotisCharalampous