+83,345% Profit / Last 2 Years paid

by PRO_Trader_EUROPE in category Other at 13/03/2023
Description

VIDEO EVIDENCE & DEMO VERSION FOR 3 WEEKS for you to use it for free. LINK to Download

DEMO VERSION:  https://drive.google.com/file/d/1oX0ocgpIYKcS4gM7o4g0n9rYET-Zu7Wf/view?usp=sharing

 

VIDEO EVIDENCE of 1 Year Backtesting starting with only 100 EUR 1.3.2022- 14.3.2023 on Reddit: 

https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/

(Starting Capital: 100 EUR. Net Profit: 65,967.37 EUR)

 

                                                                                                        

Disable VPN if you have it on, because I tried to download it with VPN and I could not. With VPN disabled you can download it. It is saved in my google drive..

YOU MUST READ EVERYTHING HERE BEFORE USING MY TRADING ROBOT !! Or else you will lose all your money 100%

The Demo version has the Expiration Date 31.3.2023 You must close all open positions on this day and turn of the cBot !! Don't say I did not warn you after the positions just keep running after 31.3.2023 and you lose all your money because you did not close your position and turned off the cBot! When you turn off the cBot / this trading robot will not close the open positions. You have to do it manually!! The Cbot closes and opens new positions on the opposite signal so YOU MUST HAVE YOUR COMPUTER ON RUNNING ALL THE TIME if you did not close the open position and turned of the cBot. No Sleep mode and so on like in laptops - disable it to go to sleep mode. You can still lock your computer and later log in, because the programs still run in the background. You can't just close the cTrader platform and shut down your computer or restart it because you will leave a position open! First close the position and turn of the cBot (trading robot). If you computer restarts by accident do not worry, just open your cTrader platform and close the positions and then run the cBot again if you want.

!! IF YOU  DID NOT READ THE WARNING I  JUST WROTE ABOVE YOU WILL LOSE ALL YOUR MONEY 100% !!

in the DEMO version you can download in the link above you must add AUD/USD currency pair on the 1 minute time frame, Candlestick chart type.

In this DEMO version I used these settings: 

* if balance increased by 105%, double position size

/ if balance decreased by 40% or more, halve position size

In the Demo version you can set the Quantity Lots. I set it at default at 0.01 Lot which is the minimum. You can chose more. I am warning you not to use more than 0.02 Lot on the 100 EUR trading account! I strongly recommend using only 0.01 Lot on the 100 EUR trading account! If you want to use it on the bigger trading account calculate the risk yourself. You must first run the cBot through the Backtesting program for the 1 Year period on the Accurate TICK Data. There you will see if the cBot will blow your account based on your trading account size and the Quantity Lots you want to use ! Please chose the safe settings to trade it live! Maximum Equity Drawdown should not be more than 30% on the 1 Year Backtesting. First do this and then try it out to trade for you on the Demo trading account. You can use it to trade on the Live account, but 3 weeks to test it does not guaranty it will make you profit.

All the important Parameters are hidden in the Parameter Window. This way no programmer can reverse engineer my work. Don't even try to do it ;), because I tell you right now it is not what you think it is and no other trading robot uses this logic to open new positions ;) . Even me myself am very surprised this strategy even works and that it works so well because it is very complicated. I got very lucky the Optimization Program even found the right Parameter settings for my cBot because I almost gave up after running the Optimization program for weeks.

 

 

To buy or to rent my cBot contact me on my email.

My email: tony.hammer.diesel@gmail.com

 

Kind regards

 

 EXAMPLE on the Screenshots:

Backesting result on accurate data: Last 2 Years (13.3.2021-13.3.2023)

Starting Capital: 100 EUR

Ending Balance: 85,095.55 EUR

Net Profit: 83,435.25 EUR

Profit: +83345% / 2 Years

Quantiity Lots on Start: 0.02 Lot / 100 EUR starting Capital (cBot increases position size for every 100% profit)

Settings:

* if balance increased by 100%, double position size

/ if balance decreased by 40% or more, halve position size

(I can change the settings in the code for increasing and decreasing position size to reduce the maximum Equity and Balance Drawdown to make it much safer)

 

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
  
   //DEMO VERSION FOR 3 WEEKS for free. LINK: (UNTIL 31.3.2023. On this day close all positions and turn off the cBot!)
  // https://drive.google.com/file/d/1oX0ocgpIYKcS4gM7o4g0n9rYET-Zu7Wf/view?usp=sharing

  //VIDEO of 1 Year Backtesting starting 100 EUR 1.3.2022- 14.3.2023 on Rumble: 
  //https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/

// TO GET THE REAL cBot CONTACT ME ON MY EMAIL: tony.hammer.diesel@gmail.com

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 tonyhammerdieselgmailcom : Robot
    
    
    
 
   // DEMO VERSION FOR 3 WEEKS for free. LINK: (UNTIL 31.3.2023. On this day close all positions and turn off the cBot!)
   //  https://drive.google.com/file/d/1oX0ocgpIYKcS4gM7o4g0n9rYET-Zu7Wf/view?usp=sharing
  
    
  //VIDEO of 1 Year Backtesting starting 100 EUR 1.3.2022- 14.3.2023 on Rumble: 
  //https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/
  
   
    
    
    
    // TO GET THE REAL cBot CONTACT ME ON MY EMAIL: tony.hammer.diesel@gmail.com
    
    
  
    
    
    {
        
        public DataSeries Source { get; set; }

        
        public int SmaPeriod { get; set; } =0;

        private SampleSMA sma;
        
        // TO GET THE REAL cBot CONTACT ME ON MY EMAIL: tony.hammer.diesel@gmail.com

        protected override void OnStart()
        
        // TO GET THE REAL cBot CONTACT ME ON MY EMAIL: tony.hammer.diesel@gmail.com
        {
            sma = Indicators.GetIndicator<SampleSMA>(Source, SmaPeriod);
        }

        protected override void OnTick()
        {
            
        }
    }
}


      //VIDEO of 1 Year Backtesting starting 100 EUR 1.3.2022- 14.3.2023 on Rumble: 
      //https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/
    
   
     //DEMO VERSION FOR 3 WEEKS for you to use it for free. LINK to Download: 
     
     // https://drive.google.com/file/d/1oX0ocgpIYKcS4gM7o4g0n9rYET-Zu7Wf/view?usp=sharing

 //Disable VPN if you have it on, because I tried to download it with VPN and I could not. 
 

 //YOU MUST READ EVERYTHING HERE BEFORE USING MY TRADING ROBOT !! Or else you will lose all your money 100%

 //The Demo version has the Expiration Date 31.3.2023 - You must close all open positions on this day and turn of the cBot !! 
 //Don't say I did not warn you after the positions just keep running after 31.3.2023 and you lose all your money 
 //because you did not close your position and turned off the cBot! When you turn off the cBot /
 // this trading robot will not close the open positions. You have to do it manually!! 
 //The Cbot closes and opens new positions on the opposite signal so YOU MUST HAVE YOUR COMPUTER ON RUNNING ALL THE TIME 
 //if you did not close the open position and turned of the cBot. No Sleep mode and so on like in laptops - disable it to go to sleep mode. 
 //You can still lock your computer and later log in, because the programs still run in the background. 
 //You can't just close the cTrader platform and shut down your computer or restart it because you will leave a position open! 
 //First close the position and turn of the cBot (trading robot). If you computer restarts by accident do not worry, 
 //just open your cTrader platform and close the positions and then run the cBot again if you want.

 //!! IF YOU  DID NOT READ THE WARNING I  JUST WROTE ABOVE YOU WILL LOSE ALL YOUR MONEY 100% !!

 //in the DEMO version you can download in the link above you must add AUD/USD currency pair on the 1 minute time frame, Candlestick chart type.

 //In this DEMO version I used these settings: 

 //* if balance increased by 105%, double position size

 /// if balance decreased by 40% or more, halve position size

 //In the Demo version you can set the Quantity Lots. I set it at default at 0.01 Lot which is the minimum. You can choose more. 
 // I am warning you not to use more than 0.02 Lot on the 100 EUR trading account! 
 //I strongly recommend using only 0.01 Lot on the 100 EUR trading account!
 //If you want to use it on the bigger trading account calculate the risk yourself. 
 //You must first run the cBot through the Backtesting program for the 1 Year period on the Accurate TICK Data. 
 //There you will see if the cBot will blow your account based on your trading account size and the Quantity Lots you want to use ! 
 //Please chose the safe settings to trade it live! Maximum Equity Drawdown should not be more than 30% on the 1 Year Backtesting. 
 //First do this and then try it out to trade for you on the Demo trading account. 
 //You can use it to trade on the Live account, but 3 weeks to test it does not guaranty it will make you profit.

 //All the important Parameters are hidden in the Parameter Window. This way no programmer can reverse engineer my work. 
 //Don't even try to do it ;), because I tell you right now it is not what you think it is and no other trading robot uses 
 //this logic to open new positions ;) . Even me myself am very surprised this strategy even works and that it works so well because 
 //it is very complicated. I got very lucky the Optimization Program even found the right Parameter settings for my cBot 
 //because I almost gave up after running the Optimization program for weeks.
    
    
    
  //VIDEO of 1 Year Backtesting starting 100 EUR 1.3.2022- 14.3.2023 on Rumble: 
  //https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/
  
  //VIDEO of 1 Year Backtesting starting 100 EUR 1.3.2022- 14.3.2023 on Rumble: 
  //https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/
  
  
  //VIDEO of 1 Year Backtesting starting 100 EUR 1.3.2022- 14.3.2023 on Rumble: 
  //https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/
  
  
Comments

PRO_Trader_EUROPE - March 13, 2023 @ 17:47

DEMO VERSION FOR 3 WEEKS for you to use it for free. LINK to Download:  https://drive.google.com/file/d/1WFSqcw4sKCBP9oabifgzjiaKpNVLdpkt/view?usp=sharing

Disable VPN if you have it on, because I tried to download it with VPN and I could not. With VPN disabled you can download it. Don't ask me why.. It is saved in my google drive..

YOU MUST READ EVERYTHING HERE BEFORE USING MY TRADING ROBOT !! Or else you will lose all your money 100%

The Demo version has the Expiration Date 31.3.2023 You must close all open positions on this day and turn of the cBot !! Don't say I did not warn you after the positions just keep running after 31.3.2023 and you lose all your money because you did not close your position and turned off the cBot! When you turn off the cBot / this trading robot will not close the open positions. You have to do it manually!! The Cbot closes and opens new positions on the opposite signal so YOU MUST HAVE YOUR COMPUTER ON RUNNING ALL THE TIME if you did not close the open position and turned of the cBot. No Sleep mode and so on like in laptops - disable it to go to sleep mode. You can still lock your computer and later log in, because the programs still run in the background. You can't just close the cTrader platform and shut down your computer or restart it because you will leave a position open! First close the position and turn of the cBot (trading robot). If you computer restarts by accident do not worry, just open your cTrader platform and close the positions and then run the cBot again if you want.

!! IF YOU  DID NOT READ THE WARNING I  JUST WROTE ABOVE YOU WILL LOSE ALL YOUR MONEY 100% !!

in the DEMO version you can download in the link above you must add AUD/USD currency pair on the 1 minute time frame, Candlestick chart type.

PRO_Trader_EUROPE - March 13, 2023 @ 20:41

I posted the wrong link in my previous message. Here is the correct one.

DEMO VERSION FOR 3 WEEKS for you to use it for free. LINK to Download: 

 https://drive.google.com/file/d/1oX0ocgpIYKcS4gM7o4g0n9rYET-Zu7Wf/view?usp=sharing

PRO_Trader_EUROPE - March 14, 2023 @ 10:15

VIDEO of 1 Year Backtesting starting with only 100 EUR 1.3.2022- 14.3.2023 on Rumble: 

https://www.reddit.com/user/HorrorCompetition627/comments/11r014l/cbot_working_on_audusd_m1/

(Starting Capital: 100 EUR. Net Profit: 65,967.37 EUR)

gmkenneyy - March 17, 2023 @ 03:57

I backtested your bot using data from 01/01/2022 - 31/12/2022

Made only EUR 286.44 (two hundred and eighty-six euros) in a year. 

Is this its expected behavior?  A pity i cant upload a screenshot to this thread.

The profit factor is 1.66 

Number of trades: 400

Winning trades: 247

Losing trades: 153

I can help improve the winrate of your bot, you only have to ask.

 

PRO_Trader_EUROPE - March 17, 2023 @ 07:10

REPLYING TO:

gmkenneyy - March 17, 2023 @ 03:57

I backtested your bot using data from 01/01/2022 - 31/12/2022

Made only EUR 286.44 (two hundred and eighty-six euros) in a year. 

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

My Reply:

What broker did you use?

*What was the Starting Capital?

*What was the volume size (Lots) on start?

 

Please try to backtest my bot with the parameters set for best performance for the last 6 years.

You can use it for free until 30.5.2023. 

Download my FREE cBot here, LINK:

 https://drive.google.com/file/d/1mj3crroXwnhCC8VRqjUJMWFqVkAl_3ni/view?usp=sharing

 

My new post: https://ctrader.com/algos/cbots/show/3313

Link to my cBot with the best Parameter settings

 

PRO_Trader_EUROPE - March 17, 2023 @ 07:50

MY REPLY TO:

(( gmkenneyy - March 17, 2023 @ 03:57

I backtested your bot using data from 01/01/2022 - 31/12/2022

Made only EUR 286.44 (two hundred and eighty-six euros) in a year.  ))

MY REPLY:

Hi gmkenneyy,

It looks like you did not Backtest my cBot like you should. You should use Accurate Data for Backtesting. You did not use the right volume size in the Parameter Quantity (Lots).

You probably used only 0.01 Lot on the 1000 eur trading account balance.

I just finished Backtesting my cBot with the Accurate Data using 0.03 Lot on the 100 eur trading account . It is the cBot from this post.

Period: 1.1.2022 - 31.12.2022 (just like you did)

Starting Capital: 100 EUR

Net Profit: 25,501.83 EUR

Profit: 25,502% from 1.1.2022 to 31.12.2022

Quantity (Lots): 0.03 Lot

Profit Factor: 1.75

Here is the Link on Reddit of the SCREENSHOTS (EVIDENCE):

1.

https://preview.redd.it/4vt17s9fm8oa1.png?width=1920&format=png&auto=webp&v=enabled&s=b09fcb63f19d97eadc4067cf8e71bf27b3a1f732

Click: Click here to open the Link on Reddit

2.

https://preview.redd.it/6rwr35ifm8oa1.png?width=1920&format=png&auto=webp&v=enabled&s=7794d07bba716680b74a2bde4c2c847db87d38d6

Click: Click here to open the second Screenshot Link on Reddit

5