gmkenneyy
Information
Username: | gmkenneyy |
Member since: | 20 Mar 2020 |
Last login: | 23 Oct 2024 |
Status: | Blocked |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 9 | 27 |
Forum Topics | 0 | 0 |
Jobs | 0 | 0 |
Last Algorithm Comments
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
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.
Let "ClickAlgo" handle that for you. Not cAlgo
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.
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
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;
My bad ....sincere apologies ...it works ...
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
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?
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.
Cleaner code for this indicator has been developed & uploaded
LWMA CrossOver Signal Indicator | Algorithmic Forex Trading | cTrader Community
"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
@velu130486 Telegram: TG_KFTD
Anything multiplied by zero would equal zero
Your formula for volume is a bit flawed "Account.Balance * 0 * InitialVolumePercent" - The zero should be 1
int barSpan = 10;
Bars.HighPrices.Maximum(barSpan);
Bars.LowPrices.Minimum(barSpan);
will also do the job, no need to reinvent the wheel
Are you sure about that? - Stochastic is an oscillator, so is the DMS. Tema-Dema is not
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
I was under the impression the word 'FREE' means 'no money involved'. So why is this bot not free as advertised?
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.
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
@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 !!!
@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)
Another time-waster!!!!!
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?
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
theres no need for the PipSize property, simply use Symbol.PipSize that should do