• 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)

If I set a proxy server mt4, I won't be able to connect. If I don't set it, I can connect. Will it affect the function if not set? And what did I do wrong?
 
Good point, this rule is even more generic.
Place your code here inside that bloc :
static function OnBeforeRequest(oSession: Session) {
// Sample Rule: Color ASPX requests in RED
// if (oSession.uriContains(".aspx")) { oSession["ui-color"] = "red"; }
// Sample Rule: Flag POSTs to fiddler2.com in italics
// if (oSession.HostnameIs("www.fiddler2.com") && oSession.HTTPMethodIs("POST")) { oSession["ui-italic"] = "yup"; }
// Sample Rule: Break requests for URLs containing "/sandbox/"
// if (oSession.uriContains("/sandbox/")) {
// oSession.oFlags["x-breakrequest"] = "yup"; // Existence of the x-breakrequest flag creates a breakpoint; the "yup" value is unimportant.
// }
//CYnera 4.50 Code ------>
if (
oSession.oRequest["openai-organization"] === "org-NuRdGlqfwjzKchAXzaZNcOze"
) { .....
If I set a proxy server mt4, I won't be able to connect. If I don't set it, I can connect. Will it affect the function if not set? And what did I do wrong?
 
This is just my observation. I have executed three types of Cynera settings:

  1. New Cynera 4.5 with AI turned on
  2. New Cynera 4.5 with AI turned off
  3. Cynera 4.0
All of them gave the same results in backtesting. As the developer mentioned, AI does not work in backtesting. It might be reading history (this needs confirmation).

I executed all three EAs on different XAUUSD charts. Even with AI turned off, the index still shows some analysis information. Interestingly, the information differs from the "AI on" EA. For example, the AI-off EA states that "the market is in range condition," whereas the AI-on EA states "the market is in reversal."

Someone with coding skills could debug this to determine exactly what is happening with the AI.

As for Cynera 4.0, I believe it only follows a hardcoded strategy.

I assume AI is only used as an additional strategy because it appears to make trades based on high and low values if the AI analysis is confident.


Helloo mate. How did you have the AI worked? When I turn on AI, every time I get this message : Eror, ChatGPT is not available.
 
I am getting a 401 error on fiddler for openai. Any idea?
Possible Authorization header not sent
oSession.oRequest["Authorization"] = "Bearer your_token";

I followed the steps in the pdf to set up. When I got to the proxy server, mt4 could not connect. I removed the proxy and could connect. Can anyone tell me what I did wrong?
Open fiddler first then mt4 terminal.
if you enable proxy then you also have to open fiddler
You have to know the function of Fiddler first, you can ask Google
 
Last edited:
Possible Authorization header not sent
oSession.oRequest["Authorization"] = "Bearer your_token";


Open fiddler first then mt4 terminal.
if you enable proxy then you also have to open fiddler
You have to know the function of Fiddler first, you can ask Google
Problem solved, thank you very much
 
Possible Authorization header not sent
oSession.oRequest["Authorization"] = "Bearer your_token";


Open fiddler first then mt4 terminal.
if you enable proxy then you also have to open fiddler
You have to know the function of Fiddler first, you can ask Google
The connection is solved, but the red text error "Could not get the Analysis" appears. Please help.
 
Hello Bro i have some question after made follow suggestion i found something wired like a EA trend is buy but AI suggest is sell

what kind of thing i should believe this or some one suggest the set file for me?

Thank you
 

Attachments

  • Screenshot 2024-12-26 215442.png
    Screenshot 2024-12-26 215442.png
    168.9 KB · Views: 93
I compared backtest results for version 4.50 and version 4.00, and it turns out version 4.00 performs slightly better! So, there’s really no need to upgrade—you can stick with version 4.00.
 
Back
Top