Category Trend  Published on 11/04/2023

AnnA (846% Proven)

Description

AnnA is a robust bot that was created with the assistance of an AI to trade even the most volatile market conditions to return a profit. AnnA uses math, market data, the right indicators along with current market conditions to execute trades.

AnnA was created specifically to trade XAU/USD but can be modified to trade various symbols including stocks, crypto, commodities etc. Anna is fully configured to trade a 10k account , your only tasks are as follows ; download and install AnnA,  select the XAU/USD 1 min chart, ensure that the account is funded with 10k,  initial quantity is set to1 lot and click play.

The option to trade on a 1 min versus 4hr chart produces significantly different result. The 1min  more than quadruples the ROI of the  4hr chart see results of carts below of Jan to Dec .2022 and will 10x that if AnnA is restarted each month. AnnA has three versions  mini, midi, and grande to fit your trading budget.

AnnA can also be modified to trade mini and micro lots.

 Trading on 1hr chart from Jan-Dec 2022

 

Trading 1min chart from Jan-Dec.2022

 


using System;
using cAlgo.API;
  
namespace cAlgo.Robots
{
    [Robot(AccessRights = AccessRights.None)]
    public class XAUUSD : Robot
    {
        [Parameter(DefaultValue = "XAUUSD - Price Action")]
        public string Message { get; set; }
  
        protected override void OnStart()
        {
            Print("email nikonysac79@gmail.com to download.");
            MessageBox.Show("Visit whatsapp 8767906248 to download.");
        }    
    }
}

MA
Magnor

Joined on 14.03.2023

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: AnnA.10.k.algo
  • Rating: 5
  • Installs: 582
  • Modified: 06/04/2023 21:13
Comments
Log in to add a comment.
FormerlyaTrader's avatar
FormerlyaTrader · 1 year ago

Thanks for the code man just finish my first week cautious but excited so far. Was a bit too aggressive thought I had to tone it down.

MA
Magnor · 1 year ago

Demo code now removed has it was pointed that people are reverse engineering the code, I spent 100s of hours building  and testing this to not at least reap a little. so feel free to email me @ nikonysac79@gmail.com for free trials

MA
Magnor · 1 year ago

 

I suggest you go learn to properly before you accuse ppl of scam...The wording did not say it uses AI to trade! Also why would I post a  demo version for all to see?

SM
SmartRetailTradingRobot · 1 year ago

AI ? That is a scam. Your code only do 3 SMA as Entry Signals. A very simple Bot and NO AI!

GM
gmkenneyy · 1 year ago

Hello,

Thanks for uploading this bot.  Just a small error that i spotted in the OnPositionsClosed() event

            if (InitialQuantity == 1) // check if initial trade size is still at default value
            {
                InitialQuantity = 1; // increase the initial trade size to 20 for the next trade
            }
            else
            {
                InitialQuantity = InitialQuantity *1; // double the lot size for each successive trade that is lost
            }

I would code the above if statement as follows

            if (InitialQuantity == 1) // check if initial trade size is still at default value
            {
                InitialQuantity += Symbol.VolumeInUnitsStep; 
            }
            else
            {
                InitialQuantity *= 2.0; // double the lot size for each successive trade that is lost
            }

What do you reckon?

EV
evgrinaus · 1 year ago

If it is paid for, why show the code?