
Topics
Replies
PanagiotisCharalampous
24 Jul 2019, 16:50
Hi Ahmad,
No at the moment it is not possible. You can only add a CustomControl class which can only contain Chart API elements. See below an example
public class BuySellButtons : CustomControl { public event Action BuyButtonClick; public event Action SellButtonClick; public BuySellButtons() { var buyButton = new Button { Text = "Buy", Width = 80 }; var sellButton = new Button { Text = "Sell", Width = 80, Margin = "5 0 0 0" }; var stackPanel = new StackPanel { Orientation = Orientation.Horizontal }; stackPanel.AddChild(buyButton); stackPanel.AddChild(sellButton); AddChild(stackPanel); buyButton.Click += args => BuyButtonClick.Invoke(); sellButton.Click += args => SellButtonClick.Invoke(); } }
var tradeButtons = new BuySellButtons { VerticalAlignment = VerticalAlignment.Top, HorizontalAlignment = HorizontalAlignment.Left, Margin = 5 }; Chart.AddControl(tradeButtons); tradeButtons.BuyButtonClick += () => Print("Buy button clicked"); tradeButtons.SellButtonClick += () => Print("Sell button clicked");
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Jul 2019, 16:43
Hi tmfd,
The plan is for v3.7.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Jul 2019, 16:12
Hi Trizocy,
You can also contact a Consuntant directly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Jul 2019, 14:50
Hi danblack9988,
Thanks for posting in our forum. This is by design and there is no way to change it. The rays remain constant related to X and Y angles so that the ray passes from the same X,Y points no matter what the scale is. Therefore the angles will change depending on the scale of the axes.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Jul 2019, 09:46
Hi marshalmax9,
You can send the cBot to community@spotware.com with instructions on how to reproduce the problem.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Jul 2019, 09:42
Hi trnd054,
Thanks for posting in our forum. You can use the object list on the main window. Your selection is applicable on the detached chart as well.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 16:52
( Updated at: 21 Dec 2023, 09:21 )
Hi Eliezer,
It looks fine on mine.
Can you send me a full screenshot of the interface as well?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 16:39
Hi Eliezer,
Backtesting data is only available untll the day before. For today's backtesting data, you will need to wait till tomorrow. At this moment backtesting data for 22/07 is available.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 16:10
Hi Eliezer,
Can you please provide more information about the error you are referring to e.g. a screenshot? Which broker are you using? Which symbol?
Best regards,
Panagiois
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 14:28
Hi eyeball,
We do not have an ETA for renko backtesting yet. Regarding the other two there are no plans yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 14:07
Hi therealnakedtrader,
Thanks for posting in our forum. Can you please post the complete cBot code including the statement used to print? It seems that your print function is just concatenating the two values as strings
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 10:58
Hi Ivan,
Thanks for the info. Can our QA team contact you directly? If yes, please send me an email at community@spotware.com to arrange this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 10:01
Hi benpepperwhittaker,
Yes that could work.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 09:30
Hi wolfager,
Thanks for posting in our forum. We will be releasing v3.6 soon. Please check when released and let us know if it resolves the issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 09:15
Hi benpepperwhittaker,
Currently this is not possible. We will provide a solution in a future update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 12:45
Hi bankuow@hotmail.com,
This is not what the link says. You have used the equation for Rn. The equation you need to use is for TWR (%). Also it seems you are using the balance instead of the equity.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 12:27
Hi bankuow@hotmail.com,
You can find how ROI is calculated here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 11:02
Hi Jens,
We have considered the feedback of the community and we will fix this behavior in one of the upcoming updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 10:13
Hi Rosesmillionaire,
Thanks for posting in our forum.On hovering the mouse on top of each option a detailed explanation of each one pops up. Explanation is also offered here. Could you elaborate on what is not clear for you?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 Jul 2019, 09:08
Hi danblack9988,
There isn't at the moment but it is in our plans to add such functionality.
Best Regards,
Panagiotis
@PanagiotisCharalampous