• 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 :)
General chit-chat
Help Users
  • No one is chatting at the moment.

      New EA CyNera MT4 4.31 (no dll)

      Issues with ai function use 4.0 or later version..even after disabling ai still ea make decisions based on it.
       
      Is it possible to run the proxy all the time? Does it interfere with other ai bot such as ai gen xii for instance?
       
      Is it possible to run the proxy all the time? Does it interfere with other ai bot such as ai gen xii for instance?
      Yes, you need to run the proxy all the time because if a request to OpenAI fails, Cynera will stop working. The interesting part is that AI GEN XII uses the same orgID as Cynera, which likely means they are developed by the same group. If they both use the same orgID and you have configured the proxy correctly, the requests from both bots will be redirected to your account.
       
      Yes, you need to run the proxy all the time because if a request to OpenAI fails, Cynera will stop working. The interesting part is that AI GEN XII uses the same orgID as Cynera, which likely means they are developed by the same group. If they both use the same orgID and you have configured the proxy correctly, the requests from both bots will be redirected to your account.
      That's an interesting discovery.
      I hope it doesn't cause a big drawdown like AI GEN XII.
       
      Yes, you need to run the proxy all the time because if a request to OpenAI fails, Cynera will stop working. The interesting part is that AI GEN XII uses the same orgID as Cynera, which likely means they are developed by the same group. If they both use the same orgID and you have configured the proxy correctly, the requests from both bots will be redirected to your account.
      Wow interesting, thanks for your observation, increases our alertness, and more skeptical :ok:
       
      If I set the proxy server mt4, I will not be able to connect. If I don't set it, I can connect. If I don't set it, will it affect the function? And what did I do wrong?
       
      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: 78
      Back
      Top