Category Other  Published on 02/12/2019

FX Martingale

Description

Please check details here

/forum/calgo-support/11265?page=2#12

-----------------------------------------------------------------------------------------------------------------------------------------------------

V0: cBot download ( no source code )

https://www.dropbox.com/s/otqivbvubkm6zcx/MartingaleFX_V0_Stable_Final_Trial.algo?dl=0

-----------------------------------------------------------------------------------------------------------------------------------------------------

V2: Very stable version of martingale with 2 important features which i personally wanted

1) All trades will be open from Monday and will be closed by Friday, so no weekend risk.
2) PnL threshold acts as weekly TakeProfit. No more trades for that week if PnL Threshold has hit.

This ensures that i can just run it on several instruments every Sunday night and turn it off on next Saturday morning. Peace of mind for myself !!

New parameters added 

Enable gridSizeLast4Steps : If enabled you can specify exact pips for last 4 steps of martingale grid.
GridSize for Last4Steps : Size of grid spacing for last 4 steps of martingale sequence.

V2: cBot download V2 ( no source code )


https://www.dropbox.com/s/ivoi416seu44k77/MartingaleFX_V2_Stable_Final_Trial.algo?dl=0   ( updated )

-------------------------------------------------------------------------------------------------------------------------------------------------------

( Below is RISKY version of Martingale , this bot has not been shared because it is risky in my opinion, and thus use above V0 & V2 versions which are much stable and works on a lot of instruments )

https://www.myfxbook.com/members/TRMR/martingale-fx-v0/1977124


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 CTDNSampleUploadcBot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }


        protected override void OnStart()
        {
            ChartObjects.DrawText("Trend MeanReversion", "Please check -> http://ctdn.com/forum/calgo-support/11265?page=2#12 ", StaticPosition.Center, Colors.White);
        }

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

        protected override void OnStop()
        {

        }
    }
}


TR
trend_meanreversion

Joined on 31.07.2014

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: CTDN SampleUpload cBot.algo
  • Rating: 0
  • Installs: 2779
Comments
Log in to add a comment.
ER
erickhenriquetroll · 3 months ago

Hello mate

Is this project still going or you stopped working on it?

Tried downloading the ea but the links are no longer working.

QG
qggill · 2 years ago

Hi.

Could you please change SL/TP values to system current ATR, each time a new trade is generated.

Thanks.

BU
bullitttrader · 5 years ago

Hello, is there a Update or download Link?

ME
meet2mihir · 7 years ago

can you please help me?

in the sample martingle cBot, it creates trades randomly.

how can i edit that cBot, so, that it creates trades ALTERNATE instead of defaul RANDOM?

 

rambutancapital's avatar
rambutancapital · 7 years ago

Thanks for sharing, interesting results :)