
Topics
Replies
PanagiotisCharalampous
13 Aug 2019, 16:17
Hi ctid990337,
Thanks for posting in our forum. The message means that the values are identical with the previous ones. It would be better to check if the new stop loss and take profit are different from the existing ones before you try to modify them.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Aug 2019, 12:41
Hi GenesisG.
If the file is being used by another process then you will get an exception. Please read this discussion, it should be helpful.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Aug 2019, 12:14
Hi GenesisG,
Thanks for posting in our forum. The reason you are getting this exception is because you are trying to use a variable that has not been initialized in OnStop
protected override void OnStop() { _fileWriter.Close(); }
You do not seem to initialize or use this variable any where. What is the purpose of it?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Aug 2019, 09:28
Hi timofeynz,
Can you please provide us with such a case?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Aug 2019, 09:00
Hi timofeynz,
Thanks for posting in our forum. Stop losses are always set based on the position's entry price.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 17:49
Hi Christian,
No there isn't. You could consider using a file instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 16:29
Hi Christian,
There is no way to access the actual indicators plotted on the chart.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 14:22
Hi Christian,
Thanks for posting in our forum, You can find an example of how to call an indicator inside another indicator here. Let me know if this helps.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 10:10
Hi Alexander,
There is no out of the box feature for this. You will need to develop it yourself. This is why I proposed Chart.DrawText(). If you want the text to be printed in a static position, you can use Chart.DrawStaticText.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:43
Hi ciripa,
Thanks for posting in our forum. The most probable reason is that you do not use the same settings for both instances. Make sure your backtesting runs with the exact same settings.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:41
Hi Vitaly,
You can draw a trendline and extend it to infinity. See below
var trendLine = Chart.DrawTrendLine("TrendLine", dateTime1, y1, dateTime2, y2, Color.Red); trendLine.ExtendToInfinity = true;
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:34
Hi Soren,
Thanks for posting in our forum. We still do not have an ETA for this feature.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:31
( Updated at: 21 Dec 2023, 09:21 )
Hi chanapong3,
You can find an explanation of each trigger method when you hover your cursor above eahc selection in the Create Order window. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:24
Hi Mario,
There is no such possibility at the moment. Can you please expain me the necessity of such a feature? How often do you change cTIDs? What is the need behind doing this?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:22
Hi Alexander,
Thanks for posting in our forum. To achieve this you can use Chart.DrawText() function and print the Y Value as text.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:19
Hi basil,
Thanks for posting in our forum. To be able to help you, we need more information. As a start, can you post the cBot code you are using?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:17
Hi 158197794,
The VPS should be the closest possible to the proxy you are using. You can use an IP location finder to determine that.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Aug 2019, 09:13
Hi,
Thanks for posting in our forum. If you are sure the cBot works the other way round than the way you wish it to work, just switch the order placement orders in the following code part
if (IsBuy(last)) { Trade.CreateBuyMarketOrder(Symbol, Volume); PosOpen++; OpenIndex = last; } if (IsSell(last)) { Trade.CreateSellMarketOrder(Symbol, Volume); PosOpen++; OpenIndex = last; }
To add a trailing stop loss, just set the relevant parameter to true in the ExecuteMarketOrder function.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Aug 2019, 14:53
Hi FireMyst,
We tried reproducing the problem but we could not. To investigate further we will need more information like the full cBot code, the number of instances running concurrently and the cBot parameters for each of them. We need to setup the exact same environment as you have. If you can send this information we can have another look.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Aug 2019, 16:29
Hi maroun,
Thanks for posting in our forum. Can you please send us troubleshooting information the next time this happens? To do so, please press Ctrl+Alt+Shift+T. paste the link to this discussion inside the textbox and press submit.
Best Regards,
Panagiotis
@PanagiotisCharalampous