
Topics
Replies
mindbreaker
16 Nov 2015, 15:35
:)
TraderM said:
Hi,
I would like to have a single robot that turns off all other robots, for example if the account balance goes under a certain level.
I would prefer a single robot because:
- no code redundancy, functionality is centralised and only has to run in one instance
- parameters only have to be set once, which is less prone to user error
- I could attach this single robot to a faster time frame (OnTick or 5M OnBar) rather than to the one which my robots currently use (Hourly OnBar). (If I have to code this in all my instances OnTick, then this would seriously increase required resources and impact performance.)
I found an old thread in the Suggestions part of the Forum (/forum/suggestions/1475)...I guess this hasn't been implemented, has it? Or is there an alternative solution?
Thanks!
TraderM
Hello,
In one cBot create file or folder
in other cbots check if file or folder exist if exist then stop the cbot
Nice day
@mindbreaker
mindbreaker
14 Nov 2015, 12:52
RE: Comissions
Do you think that someone copies your position and that a demo account (total lack of concern) about the customer.
This is some deception is a whole copy signals.
Copy on demo and then to real account and nothing to pay.
There is no blocking demo accounts, and users in cmirror.
Poorly
@mindbreaker
mindbreaker
13 Nov 2015, 18:26
RE: RE:
mindbreaker said:
Please delete my profile and all information associated with it.
I do not consent to further distribute content added by me.
@mindbreaker
mindbreaker
13 Nov 2015, 18:24
RE:
Please delete my profile and all information associated with it.
@mindbreaker
mindbreaker
13 Nov 2015, 15:57
Why spotware does not care about the safety of its customers and their data ? www.cmirror.com No data encryption ?
Hi,
Why spotware does not care about the safety of its customers and their data ? www.cmirror.com No data encryption ?
Bye
@mindbreaker
mindbreaker
12 Nov 2015, 19:54
RE:
Spotware said:
Dear Trader,
In the next update of cMirror the "Mirroring Funds" and "Mirrored Volume" fields will be split to total and live. Stay tuned.
Hi,
When we can expect the ability to block users (So far it is useless) ?
Bye
@mindbreaker
mindbreaker
11 Nov 2015, 10:27
( Updated at: 21 Dec 2023, 09:20 )
RE:
Hi
If You use indicator in cbot need add reference.
Bye
@mindbreaker
mindbreaker
10 Nov 2015, 21:03
( Updated at: 21 Dec 2023, 09:20 )
RE:
Spotware said:
Dear Trader,
We will consider providing users the ability to signal providers to block the copy signals for individual traders by setting the "private" strategy with specific followers set in the future.
1) Is it possible charge a fee for profit, not as a commission ?
It's not possible.
2) Is it possible to determine the monthly fee for copying ?
It's not possible.
Regarding the error ERORR SERVER DATA OR HISTORY, could you try to login again and if you have the same issue to report it to us with the exact date,time, Timezone you tried to log in?
Thank you for reporting the SSL issue. We will investigate.
Dear Spotware,
"We will consider providing users the ability to signal providers to block the copy signals for individual traders by setting the "private" strategy with specific followers set in the future."
I hope that in the near future (in this month?)
Error retriving data from server It is all the time on cmirror.com (everyday) !!!
And why Mirroring founds show Funds from demo account not only from Real accounts?
Nice day
@mindbreaker
mindbreaker
10 Nov 2015, 14:14
( Updated at: 21 Dec 2023, 09:20 )
RE: Error
And why cmirror.com dont use SSL when display my accounts details ?
@mindbreaker
mindbreaker
10 Nov 2015, 14:07
( Updated at: 21 Dec 2023, 09:20 )
Error
And why always cmirror.com show ERORR SERVER DATA OR HISTORY:
Bye.
@mindbreaker
mindbreaker
04 Nov 2015, 14:02
RE:
//Accessing historical O-H-L-C prices from Robots // prev bar int index = MarketSeries.Close.Count-2; double high = MarketSeries.High[index]; double low = MarketSeries.Low[index];
with trailing
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class oodboo : Robot { [Parameter(DefaultValue = 50, MinValue = 0)] public int TrailingStop { get; set; } protected override void OnStart() { Print("Open position !!!"); } protected override void OnTick() { //===================================================== Trailing if (TrailingStop > 0) { foreach (var openedPosition in Positions) { Position Position = openedPosition; if (Position.TradeType == TradeType.Buy) { //double distance = Symbol.Bid - Position.EntryPrice; //if (distance >= TrailingStop * Symbol.PipSize) //{ double newStopLossPrice = Math.Round(Symbol.Bid - TrailingStop * Symbol.PipSize, Symbol.Digits); if (Position.StopLoss == null || newStopLossPrice > Position.StopLoss) { ModifyPosition(Position, newStopLossPrice, Position.TakeProfit); } //} } else { //double distance = Position.EntryPrice - Symbol.Ask; //if (distance >= TrailingStop * Symbol.PipSize) //{ double newStopLossPrice = Math.Round(Symbol.Ask + TrailingStop * Symbol.PipSize, Symbol.Digits); if (Position.StopLoss == null || newStopLossPrice < Position.StopLoss) { ModifyPosition(Position, newStopLossPrice, Position.TakeProfit); } //} } } } } protected override void OnStop() { Print("cBot was stoped."); } } }
@mindbreaker
mindbreaker
04 Nov 2015, 13:05
RE:
using System.Text; using System.Threading.Tasks; namespace Tuts_Time { class Program { static void Main(string[] args) { while (true) { // miliseconds int m = DateTime.UtcNow.Millisecond; Console.WriteLine(m); } } } }
https://msdn.microsoft.com/pl-pl/library/system.datetime.millisecond%28v=vs.110%29.aspx
@mindbreaker
mindbreaker
04 Nov 2015, 11:53
RE:
Hi,
That you're smart and you can not find a ready solution on this forum.
You are pathetic like linux.
Have a nice day.
@mindbreaker
mindbreaker
17 Nov 2015, 16:26
RE: RE: RE: RE: RE: RE: RE:
This post was removed by moderator.
@mindbreaker