
Info
Username: | ceakuk |
Name: | ceakuk |
Member since: | 19 Mar 2018 |
About
Signature
Last Algorithm Comments
@GBPCHF Robot By Mountain Solutions: 29 Jun 2018, 15:43
who is stupid enough to buy your robots without backtesting them first
@Martingale Robot: 28 Mar 2018, 23:36
bhagya3udana856 You have to round to the nearest 1000. you can BUY/SELL 1000, 2000 but not 1500 (int)(1000*Math.Floor(Position.Volume*2.5/1000))
@Renko: 28 Mar 2018, 23:05
@tmc. needs to correct renko = Indicators.GetIndicator<Renko>(RenkoPips, BricksToShow, 3, "SeaGreen", "Tomato");
Last Forum Posts
@calgo lucks trust completely: 17 Aug 2018, 13:41
I just got the beta version. wow, your beta version is so great. i cant wait for the final version. modify volume does not misbihave in the public beta version 3.0
@calgo lucks trust completely: 17 Aug 2018, 13:24
I'm using ctrader 3.0
I don't know if its beta. could you please help me with a link to download beta version?
@calgo lucks trust completely: 17 Aug 2018, 12:42
Hi, panagiotis,
Thanks for your reply. when can we expect i?
im tired of my back testing 1000$-156,000$ in just 19 days trading 5pips renko with positions a
These are crazy and impossible profits. every time i close part of the open position in profit using modify volume, the equity chart just gets astronomically high as you can see in the chart.
Thank you in advance
@calgo lucks trust completely: 14 Aug 2018, 13:52
in reference to the post https://ctrader.com/forum/cbot-support/13529
ExecuteMarketOrder(TradeType.Buy, Symbol, 40000, "x"); ModifyPosition(buyposition, 10000);
Modifying volume is gives such a wrong result yet its been there for a long time already.
why would calgo OK such a wrong code to run and that make me question the entire system
if the position had say 100$ (30000 volume=3/4 of 40000)in profit, you would expect to close 75$ and remain 25$ (10000 volume=1/4 of 40000)
However the result is always horrible
@ModifyPosition(buyposition, 10000) faulty: 30 Jul 2018, 12:00
Dear Panagiotis,
Thanks for the reply. did you mean they have been working on it before I sent the request or they saw it from my request?
Thanks
@ModifyPosition(buyposition, 10000) faulty: 30 Jul 2018, 11:33
Hi,
When Modifying volume by reducing it from say 20000 to 10000 (by half) it works perfectly. but when you reduce it by more or less than half it fails to make sence.
If 0.4 lot has a net profit of say 40$,
closing 0.2 lot should be 40$/2=20$ which works
closing 0.1 lot should be 40$/4=10$ but give wrong. also closing 0.3 lot is wrong etc
I expect closing
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 { public int i = 1; protected override void OnStart() { ExecuteMarketOrder(TradeType.Buy, Symbol, 40000, "x"); } protected override void OnTick() { var buyposition = Positions.Find("x", Symbol, TradeType.Buy); if (buyposition.Pips > 20 && i < 2) { Print(buyposition.NetProfit + " this is 0.4 Lot = 100%"); ModifyPosition(buyposition, 10000); Print(buyposition.NetProfit + " This 0.1 Lot & should be 25%"); i += 1; } } } }
Thank you
@Sharing my amazing Cbot without source code: 12 Jul 2018, 18:36
I have created an amazing cbot and I would like to share it here without showing the source codes.
How can I do it?
can the source code of cbot.algo be read?
I want others to use my bot without giving the source code.
Thanks in advance
@ClosePosition(position, partialVolume);: 12 Jul 2018, 12:36
I would like to partially lose my open positions
ClosePosition(position, partialVolume);
However, back testing does not allow partial closing. how can I use modifyposition() or alternatives
Thanks