GM
gmkenneyy
Blocked user by Spotware at 15 Jun 2024, 03:34
1 follower(s) 0 following 31 subscription(s)

Information

Username: gmkenneyy
Member since: 20 Mar 2020
Last login: 02 Jul 2024
Status: Blocked

Activity

Where Created Comments
Algorithms 9 27
Forum Topics 0 0
Jobs 0 0

Last Algorithm Comments

GM
gmkenneyy · 5 months ago

theres no need for the PipSize property, simply use Symbol.PipSize that should do

GM
gmkenneyy · 11 months ago

@jaydcrowe1989 & jim.tollan

These do the same job

LWMA CrossOver Signal Indicator | Algorithmic Forex Trading | cTrader Community

PWMA CrossOver Signal Indicator | Algorithmic Forex Trading | cTrader Community

We are all waiting to bench test this 'kNN-Based Market Prediction' indicator.

I would like to compare its results with my indicators in the links above 

GM
gmkenneyy · 1 year ago

Good man!!! - By the way, i'm in I.T too and based in Barcelona. Is it ok if i pick your brain on Forex issues that ChatGPT cant fully address? I wont take up much of your time, i know how busy software architects are.

GM
gmkenneyy · 1 year ago

Let "ClickAlgo" handle that for you. Not cAlgo

GM
gmkenneyy · 1 year ago

By the way, your indicator was mentioned on chatGPT based chatbot (the one embedded into Microsoft Edge). This is already helping you advertise your indicator. Its now left for you to harness this rather than shut the door to potential buyers.  

GM
gmkenneyy · 1 year ago

Hello,

I am struggling to find a demo version of this indicator of yours. People need to "try before they buy"

Let cAlgo handle that for you.

Regards

K

GM
gmkenneyy · 1 year ago

Hello,

Thanks for uploading this interesting indicator

Something i saw on the 1st line of the OnCalculate event

((Bars.TypicalPrices.Sum(Periods) * Bars.TickVolumes.Sum(Periods)) / Bars.TickVolumes.Sum(Periods)) / Periods;

is the same as 

Bars.TypicalPrices.Sum(Periods) / Periods; 

GM
gmkenneyy · 1 year ago

My bad ....sincere apologies ...it works ...

GM
gmkenneyy · 1 year ago

Hello,

Thanks for all the great indicators (plus code) you uploaded. They've been very useful.

I'm afraid i cant say the same for this very indicator - it shows no signals on the XAUUSD H1 timeframe.

Are you able to look into it?

Regards

K

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?

GM
gmkenneyy · 1 year ago

Thanks for uploading this indicator. 

I'm afraid theres a small bug in your code

Change the colour of the Continuos line to Yellow (or any colour other than green) - and the resulting line will show only two colours instead of three.  

GM
gmkenneyy · 1 year ago

Cleaner code for this indicator has been developed & uploaded

LWMA CrossOver Signal Indicator | Algorithmic Forex Trading | cTrader Community

 

GM
gmkenneyy · 1 year ago

"Use this indicator as trade zones; for long when indicator value is above level 70; for short when indicator value is below level 30"

I dont not belive this to be correct according to the screen shot YOU provided - i think you meant <30 go long, > 70 go short

GM
gmkenneyy · 1 year ago

@velu130486 Telegram: TG_KFTD

GM
gmkenneyy · 1 year ago

Anything multiplied by zero would equal zero

Your formula for volume is a bit flawed "Account.Balance * 0 * InitialVolumePercent" - The zero should be 1

GM
gmkenneyy · 1 year ago

int barSpan = 10;

Bars.HighPrices.Maximum(barSpan);

Bars.LowPrices.Minimum(barSpan);

will also do the job, no need to reinvent the wheel

GM
gmkenneyy · 1 year ago

@lemieuxhelmsis65

Are you sure about that? - Stochastic is an oscillator, so is the DMS. Tema-Dema is not

GM
gmkenneyy · 2 years ago

Hello,

Thanks for uploading the source code for your PAC.

1. May i ask what the Red line is? It seems best to use it in conjunction with the PAC you uploaded.  

2. What chart timeframe does the PAC work best on. I'm guessing its the H4?

Regards

Kenneth

GM
gmkenneyy · 2 years ago

I was under the impression the word 'FREE' means 'no money involved'. So why is this bot not free as advertised?

GM
gmkenneyy · 2 years ago

How is this useful to anyone?

All it does is place a buy order when a new bar opens. It never places sell orders. There is no logic whatsoever to determine trend direction.

The buy order will then wait for however long it takes to hit either SL or TP.  

GM
gmkenneyy · 3 years ago

También vivo en el centro de BCN. Este indicador suyo no indica nada.

No se puede saber la dirección de la tendencia Micro o la tendencia Macro.

No hay ninguna indicación de dónde ingresar o colocar su stop-loss.

Espero que sepas lo que estás haciendo y cómo comerciar

GM
gmkenneyy · 3 years ago

@TraderExperto - i take my hat off to you. You Italians amaze me!!! 

To code this indicator is not easy but you managed to achieve this in style !!!

 

GM
gmkenneyy · 3 years ago

@indrakh - Use H4

You still need to combine this indi with others.

It is good for trading Micro-trends(H4 & below).

If you are trading Macro trends (D3 - WK1) then this indi should be used for gauging your entry (and remember, you still need the help of other indi's) 

GM
gmkenneyy · 3 years ago

Another time-waster!!!!!

 

GM
gmkenneyy · 3 years ago

The BEST way to show-case what you've got is to allow a demo version to be downloaded and back-tested. 

This guy wants you to pay first before testing - seriously?

 

GM
gmkenneyy · 4 years ago

Hello Ahmed,

You've done great work here. Spotware should acquire your work and pay you handsomely for this.

It took me awhile to set it up but never the less - Great Work!!!

Kenneth