Information
Username: | kenneyy_eur |
Member since: | 22 Apr 2020 |
Last login: | 05 Dec 2023 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 6 | 12 |
Forum Topics | 1 | 6 |
Jobs | 0 | 0 |
Last Algorithm Comments
Hello,
I can see that your bot produces pretty good results. I also trade XAUUSD via my bot and wonder why
1. You allow the client to select the Ma parameters instead of keeping these values fixed.
2. You have not mentioned the actual timeframe these results were produced on.
3. You have not produced the results on the minimum amount tradeable AND with NO leverage
On a side not, how much is the code?
Hello,
I am impressed with the results you posted here for XAUUSD. However, i do have some concerns
1. There is no Profit Factor in ANY of the photos posted
2. When trading XAUUSD, you do not need a high leverage. A leverage of 1:2 (one to two) should suffice.
3. You have not released a demo version for people to back-test and basically "try before they buy" Only by back-testing can a buyer truly confirm whether it is worth the $5000 you asked for.
Please upload a demo version
Regards
Kenneth
Humanity IS sharing the same currency - its called Bitcoin
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.
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!!!
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?
$1000 grew to $13809 (+138%) in 30months (2.5years) - impressive but stressfull !!!
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?
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);
}
}
"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
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.