Topics
18 Jun 2014, 01:54
 3108
 5
26 Mar 2014, 18:55
 7961
 13
26 Feb 2014, 19:39
 0
 2715
 2
21 Jan 2014, 20:33
 0
 2825
 2
31 Dec 2013, 03:17
 3464
 6
13 Nov 2013, 20:58
 3087
 3
15 Oct 2013, 20:13
 2789
 3
Replies

Old Account
28 Nov 2013, 21:19

RE:

To add a downloaded indicator to your cTrader platform, follow the steps below:

 

  1. Download or move the Indicator to My Documents > cAlgo > Sources > Indicators.
  2. Open the cAlgo platform. If you don't already have it, you can download cAlgo from your broker's website (or download here if you're just using the demo fromSpotware.com)
  3. Click on the Indicators tab from the Robots/Indicators menu on the left.
  4. Find the Indicator you want to use.
  5. Click the Build icon Build. If the build is successful, the icon appearance will change to Successful build

 

The Indicator will now be available in your cTrader platform.


@Old Account

Old Account
13 Nov 2013, 23:31

Sorry for being so unclear in my explanation of the problem, but you suggestion worked.

Thanks!


@Old Account

Old Account
07 Nov 2013, 18:23

After running a cAlgo robot for a few day i noticed it started using more and more RAM after a week and a half it was using 5 GB. When i restarted it it went back to under 1 GB.


@Old Account

Old Account
05 Nov 2013, 20:20

Thanks !


@Old Account

Old Account
28 Oct 2013, 16:37

Thanks


@Old Account

Old Account
23 Oct 2013, 23:32

 private // Name of indecator abc;

  protected override void OnStart()
        {
         abc    = Indicators.GetIndicator<//Name of indecator>();
        }

protected override void OnTick()

if (abc.Result.LastValue < 1)

 

Hope it helps

 


@Old Account

Old Account
23 Oct 2013, 15:12

Thanks

 


@Old Account

Old Account
21 Oct 2013, 17:51

I agree it stupid to give away a robot to the public whit noting in return. So if i were to give my profiteble robot away for free I would offer it to the people who are helping others whit there codeing.


@Old Account

Old Account
20 Oct 2013, 22:23

30/9/2013 - 4/10/2013

-59632 USD

At this point I see this robot as too risky. But keep ut the good work.

 


@Old Account

Old Account
20 Oct 2013, 18:17

Sorry, but i don't find this robot proffiteble. I think you only got lucky, so i don't thin you wil get simular results in the future. I backtested it one year whit the setings you show in the picture and it ended up whit -6600 dollars. I will try testing it whit some other setting too.

 


@Old Account

Old Account
19 Oct 2013, 01:16

Thanks a lot for the help !


@Old Account

Old Account
18 Oct 2013, 15:53

I am currently whaiting for funds to  pay Scywere to code a robot for me. If it turns out profiteble i would be happy to share it after some testing.

Do anyone have any experience hit Scywere?


@Old Account

Old Account
17 Oct 2013, 17:27

Could you put the robot up fot download? It won't effect you proffit, only help others.


@Old Account

Old Account
16 Oct 2013, 10:49

RE: RE:

Cerunnos said:

MRSV said:

I have made a profitabel robot, but it only runs one cycle.

Right now i have my logich on OnStart(), but if i but it on on tick it makes over a 1000 positionsn

So if someone have a code for: When the position closes go back to start. (Repit)

Or a order limiter. ( Max Orders)

Thanks!

With the following simple solution you can limit maximum order number to one...

private bool IsOpenPosfalse;
...

protected override void OnTick()
{
if (!IsOpenPos)
            {
               if (_TDI.PriceSeries[Index] > _TDI.Middle[Index] && _TDI.PriceSeries[Index] > _TDI.SignalSeries[Index]) ...         
                       var request = new MarketOrderRequest(TradeType.Buy, vol)  
                        {                        
                        Label = "m10_Robot",
                        SlippagePips = 50,
                        StopLossPips = init_StopLoss                     
                        };  
                        Trade.Send(request);                        
                        IsOpenPostrue;                        
               }
}

 protected override void OnPositionClosed(Position closedPosition)
     {
      IsOpenPos = false;
     }


 

 

Thanks a lot Ceruunos!


@Old Account