Information

Username: kenneyy_eur
Member since: 22 Apr 2020
Last login: 05 Jan 2024
Status: Active

Activity

Where Created Comments
Algorithms 6 17
Forum Topics 1 6
Jobs 0 0

Last Algorithm Comments

KE
kenneyy_eur · 5 months ago

@diripa - when you unzipped the download file there were 3 files

  1. the bot for bullish trades 
  2. the bot for bearish trades
  3. the database file (.dbf file) - > this file needs to be placed in your c:\ Temp folder. (create folder it if not present)
KE
kenneyy_eur · 5 months ago

@prsc.robert - Sorry, you have to download the bot from the telegram channel - it is pinned to the top

Godaddy my site host is messing me about. So i am in the process of moving my site to a different host. Thanks for your patience.

KE
kenneyy_eur · 6 months ago

if you mean indicator parameters? - there are many 

if you mean cbot parameters - jst the defaults i.e. no profit boosting, no marting gale - just the flat minimum unit for each trade.

i hope this helps!

KE
kenneyy_eur · 6 months ago

WHO IS THIS TRYING TO PLAGLIARISE USING SOMEONE ELSES STUFF?? - I.E. MINE

KE
kenneyy_eur · 6 months ago

WHO IS THIS GUY THATS USING MY UPLOAD ???  …. 

KE
kenneyy_eur · 7 months ago

ofcourse - the download link is there where it says “Free trial available” https://kenney0.gumroad.com/l/yxifj?_gl=1*1mnkvqy*_ga*MjAyNjIyMzQ4Ny4xNzAxMDI3MzY3*_ga_6LJN6D94N6*MTcwMTE4NDMyMS42LjEuMTcwMTE4NDMyMi4wLjAuMA

KE
kenneyy_eur · 1 year ago

Hello,

I'm trying to improve this great indicator you released on here. I keep running into a brick wall

My aim is to add this indicator (for a higher timeframe) onto the current chart (M5).

I want to use it as a Divergence indicator. I have seen the other two you uploaded and have altered those ones, but this seems more promising.

Please help.

KE
kenneyy_eur · 2 years ago

Humanity IS sharing the same currency - its called Bitcoin

KE
kenneyy_eur · 2 years ago

Quite good!!! - i altered the code to create a stop loss channel and explicitly reference the channel top or bottom depending on my trade direction. 

KE
kenneyy_eur · 2 years ago

I also reran the test after moving the code from the Ontick() event to the OnBar() event and used a SL of 1000 & TP of 1000. It resulted in a bad loss!!!

KE
kenneyy_eur · 2 years ago

Hello,

I downloaded & backtested your bot using the very same parameters you used. i.e.

Asset: XAUUSD

Timeframe: D2

From: 15/01/2020

To:     15/08/2021 (Not 2020)

SL:   500

TP:   1000  

I'm afraid i have very bad news! 

<B>-3318.74$ (-33%)</B> is the result i got. A profit factor of '0' 

I realise the bot you uploaded is not the one that gave you remarkable result you posted. May i ask for the actual bot or is this for sale?

KE
kenneyy_eur · 3 years ago

$1000 grew to $13809 (+138%) in 30months (2.5years) - impressive but stressfull !!!

KE
kenneyy_eur · 3 years ago

I do apologise for my earlier post!!!

Kudos to you, this cBot is the real deal. I backtested XAUUSD M30 from 01.01.2018 - 29/05/2021

It blew me away!!!

But i do have a small concern. From 22/ Apr /2019 - 10/Sept/2019 - Not a single win. Just 5 consecutive losses which were later recovered via Martin Gale. Quite risky. I can greatly improve this cBot if i have the code. How much for the code?

KE
kenneyy_eur · 3 years ago

Replace lines 104 -118 with the lines of code below

if ((Trend ? closepip > MA1 : true) && (Pricey < (PivotSupport == 1 ? S1R : (PivotSupport == 2 ? S2R : (PivotSupport == 3 ? S3R : S4R)))) && longPosition == null)

{

       if (_MACD.MACD.Last(1) < _MACD.Signal.Last(1) && _MACD.MACD.Last(0) > _MACD.Signal.Last(0) && _MACD.Signal.Last(0) < 0)

       {

         ExecuteMarketOrder(TradeType.Buy, Symbol, Symbol.NormalizeVolume(Volume), Label, StopLoss, TakeProfit);

        }

}

if ((Trend ? closepip < MA1 : true) && (Pricey > (PivotResistance == 1 ? R1R : (PivotResistance == 2 ? R2R : (PivotResistance == 3 ? R3R : R4R)))) && shortPosition == null)

{

      if (_MACD.MACD.Last(1) > _MACD.Signal.Last(1) && _MACD.MACD.Last(0) < _MACD.Signal.Last(0) && _MACD.Signal.Last(0) > 0)

  {

         ExecuteMarketOrder(TradeType.Sell, Symbol, Symbol.NormalizeVolume(Volume), Label, StopLoss, TakeProfit);

   }

}

KE
kenneyy_eur · 3 years ago

"IT DOES NOT USE Dangerous systems like the Grid" -  A grid is not a dangerous system but quite the opposite. It is a system that involves two or more timeframes to determine trend direction