Holy Grail 2015 ) paid

by KRATX.COM in category Other at 16/01/2017
Description

Opposite trading, no any guarantees in real trading. Free!

Test for example, icmarkets broker, GBPUSD from 01.05.2015,

use Tick data, commission 30$ per Million, 

and just enjoy !

you can download here 

http://www.kratx.com/grail

Warning! Executing the following cBot may result in loss of funds. Use it at your own risk.
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
Language: C#
Trading Platform: cAlgo
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.FullAccess)]
    public class PARAPLANEBlank : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }


        protected override void OnStart()
        {
            ChartObjects.DrawText("Kratx Squad", "Please DOWNLOAD from http://www.kratx.com/grail", StaticPosition.Center, Colors.White);
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {

        }
    }
}
Comments

trend_meanreversion - January 17, 2017 @ 05:39

Nice one mate, really impressive but i know this won't work in real trading environment ( only simulations ). You are trying to trade bid/ask crossovers but in live environment , these events (even though they exist) are non-tradable for 'retail' . 

 

 

Jiri - January 17, 2017 @ 13:11

After seeing this I highly recommend staying away from KRATX. This kind of algorithm is just abusing negative spread in the historical data. Live trading this particular strategy would lead to guaranteed instant loss.

Jiri - January 17, 2017 @ 13:16

Additionally the algo requires full permission for no reason. I would love to know why. :)

KRATX.COM - January 17, 2017 @ 14:10

Read above it's free to download the bot, not for real trading uploaded only for educational purposes, what these arguments ? want to look at the code well, then please understand for one permission ...

Jiri - January 17, 2017 @ 16:42

What's the purpose of posting such a robot? If it's for education porpose why don't you upload the algo file with the source code here so we can actually learn something about it? Why does it require full permission?

KRATX.COM - January 18, 2017 @ 00:55

file which can be seen here as the code it is empty so right do not matter at all ....... I see you have already downloaded here indicators you should be aware of this, and specifically fixed for you in the main file set no rights if there are suspicions.

Jiri - January 18, 2017 @ 03:45

Are your other robots based on negative spread as well?

KRATX.COM - January 20, 2017 @ 12:04

Jiří Běloch, a professional who knows the type of the profit curve may discern what is the basis of trade principle, I see you're not new to this so it looks like a trolling chat. Again - it's not a robot for real trading it is just entertainment for the tester. Like clearly explained....

simba - July 18, 2021 @ 14:15

"it's not a robot for real trading" ? lmao

codey - December 27, 2021 @ 20:21

This robot asks Unlimited Access Rights.  Is it safe to allow this?    

Has anyone tried this robot on live?  Any results to share?

0