• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

New EA CyNera MT4 4.31 (no dll)

Please anyone, i'm using 4.5 version and what TF do you recomand? m15 or m30...on backtesting both of them give good results...thank you
 
I conducted two backtests with this EA using low settings ( v4.41): one normal and one with data shifted into the past to detect any potential cheating. The results were slightly different, suggesting that the EA has hardcoded values to avoid specific dates, like 22/10/24, to reduce its drawdown. This indicates the EA is manipulating results to display perfect backtests. Beware!

What do you mean data shifted into past, can you share the report screenshot.
 
Hi Yohmi, have downloaded the fiddler classic, but i dont know what next to do. Please kindly guide me. Thanks.
Next, enable the proxy for mt4.
Then you will be able to intercept MT4 communications with Fiddler Classic.
Next, start Cynera in MT4.
After a while, you can check the OpenAI communication with Fiddler Classic.
And then,Replace the openai api with your own.
You should be able to replace it using the auto responder.
 
Using Fiddler proxy, you can capture requests sent to ChatGPT—just like it's super easy to slap an "AI" tag on any product with a simple sentence. : My EA wants to trade right now, please Give me just which Trade to put, SELL if you want to sell, BUY if you want to buy, NONE if you dont want to buy and sell and from a scale of 1 to 10 how precise that is. Nothing more. And give me how much Takeprofit should be, not lower then 25 and not higher then 45 and Stop Loss also (Stop Loss max. 294). Depends on your desicion and you analysis. You have this information to make your decision: Symbol: XAUUSD;Timeframe: M30;Should close very fast, almost without a Drawdown;Amount of High News Today: 2;RSI: 75.29;ATR: 6.94;MA Lower: 2606.81;MA Higher: 2603.63;MA Lower2: 2608.52;MA Higher2: 2606.65;. Say why in just a few words without mentioning the indicators and start with - after your decision. In this form:[BUY/SELL/NONE];[PRECISION X/10];[TP/SL];[WHY]. Without Punctuation marks. All In English language
 
Last edited:
Hi Yohmi, have downloaded the fiddler classic, but i dont know what next to do. Please kindly guide me. Thanks.
1. Install Fiddler Classic
Download and install Fiddler Classic from the official website:

https://www.telerik.com/download/fiddler

2. Enable HTTPS Decryption
Follow this guide to activate HTTPS decryption in Fiddler:

https://learn.microsoft.com/en-us/power-query/web-connection-fiddler

3. Customize Fiddler Rules
Customize Fiddler rules to replace the Authorization and openai-organization headers. Refer to the documentation for modifying rules:

https://docs.telerik.com/fiddler/extend-fiddler/addrules

Add the following rules to your script (replace with your own ChatGPT key and organization ID):


if (oSession.oRequest["Authorization"] == "Bearer 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") {
oSession.oRequest["Authorization"] = "Bearer sk-proj-xxxx";
}

if (oSession.oRequest["openai-organization"] == "org-NuRdGlqfwjzKchAXzaZNcOze") {
oSession.oRequest["openai-organization"] = "org-xxxx";
}


5. Configure Proxy Settings in MT4
Activate the proxy in your MT4 settings by using the following configuration:

- Server: 127.0.0.1

- Port: 8888
 
I conducted two backtests with this EA using low settings ( v4.41): one normal and one with data shifted into the past to detect any potential cheating. The results were slightly different, suggesting that the EA has hardcoded values to avoid specific dates, like 22/10/24, to reduce its drawdown. This indicates the EA is manipulating results to display perfect backtests. Beware!
Thank you for sharing your discovery, Dimugo.

Do you have findings on v4.0 to share?

https://soehoe.id/cynera-mt4-4-0.t30821/
 
1. Install Fiddler Classic
Download and install Fiddler Classic from the official website:

https://www.telerik.com/download/fiddler

2. Enable HTTPS Decryption
Follow this guide to activate HTTPS decryption in Fiddler:

https://learn.microsoft.com/en-us/power-query/web-connection-fiddler

3. Customize Fiddler Rules
Customize Fiddler rules to replace the Authorization and openai-organization headers. Refer to the documentation for modifying rules:

https://docs.telerik.com/fiddler/extend-fiddler/addrules

Add the following rules to your script (replace with your own ChatGPT key and organization ID):


if (oSession.oRequest["Authorization"] == "Bearer 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") {
oSession.oRequest["Authorization"] = "Bearer sk-proj-xxxx";
}

if (oSession.oRequest["openai-organization"] == "org-NuRdGlqfwjzKchAXzaZNcOze") {
oSession.oRequest["openai-organization"] = "org-xxxx";
}


5. Configure Proxy Settings in MT4
Activate the proxy in your MT4 settings by using the following configuration:

- Server: 127.0.0.1

- Port: 8888
Thank you for documenting the comprehensive procedure, Dimugo! Impressive!
 
I guess we have to wait for 4.51 . When I ran EA two day back it's opened sell trade immediately but for me it closed in profit but i can see for some people its in dd. For smother experience i guess we need use 4.51.
 
I guess we have to wait for 4.51 . When I ran EA two day back it's opened sell trade immediately but for me it closed in profit but i can see for some people its in dd. For smother experience i guess we need use 4.51.
When I downloaded the latest version 4.50, directly selling after starting it led to a drawdown
 
1. Install Fiddler Classic
Download and install Fiddler Classic from the official website:

https://www.telerik.com/download/fiddler

2. Enable HTTPS Decryption
Follow this guide to activate HTTPS decryption in Fiddler:

https://learn.microsoft.com/en-us/power-query/web-connection-fiddler

3. Customize Fiddler Rules
Customize Fiddler rules to replace the Authorization and openai-organization headers. Refer to the documentation for modifying rules:

https://docs.telerik.com/fiddler/extend-fiddler/addrules

Add the following rules to your script (replace with your own ChatGPT key and organization ID):


if (oSession.oRequest["Authorization"] == "Bearer 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") {
oSession.oRequest["Authorization"] = "Bearer sk-proj-xxxx";
}

if (oSession.oRequest["openai-organization"] == "org-NuRdGlqfwjzKchAXzaZNcOze") {
oSession.oRequest["openai-organization"] = "org-xxxx";
}


5. Configure Proxy Settings in MT4
Activate the proxy in your MT4 settings by using the following configuration:

- Server: 127.0.0.1

- Port: 8888
is it possible to redirect mt4 web request? has anyone tried it?
 
Back
Top