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

I guess devloper have corrected past losses in mql trading history to make ea look successful. I am prity sure it had losses . Now its showing no losses for 3 months.
 
Analyze the signals of the developers carefully and you will find that the EA really started to be used from October 28th, 2024, because the trading time of this EA is only within the time range from 16:00 to 19:00.
 
Do you know that currently the V4.51 is working correctly or not, because of the develepor told pause it include Friday but which Friday? :) So I test it and you see that next to the balance is blue the line (means BUY) but the AI proposal is SELL. Please ignore the opened position, because of it was opened by another EA.
 

Attachments

  • cynera451.JPG
    cynera451.JPG
    71.5 KB · Views: 89
Analyze the signals of the developers carefully and you will find that the EA really started to be used from October 28th, 2024, because the trading time of this EA is only within the time range from 16:00 to 19:00.

Then what we should use only the with in this Time 16:00 -19:00 gmt.?
 
Here's a small update to the custom rules for Fiddler. This version is more generic and designed to work with the next version of Cynera:

//Cynera 4.xx
if ( oSession.oRequest["openai-organization"] === "org-NuRdGlqfwjzKchAXzaZNcOze" )
{
oSession.oRequest["Authorization"] = "Bearer sk-ReplaceWithYourOwnKey";
oSession.oRequest["openai-organization"] = "org-ReplaceWithYourOwnOrg";
}
 
Here's a small update to the custom rules for Fiddler. This version is more generic and designed to work with the next version of Cynera:

//Cynera 4.xx
if (
oSession.oRequest["openai-organization"] === "org-NuRdGlqfwjzKchAXzaZNcOze"
oSession.oRequest["Authorization"] = "Bearer sk-ReplaceWithYourOwnKey";
oSession.oRequest["openai-organization"] = "org-ReplaceWithYourOwnOrg";
}
I am using auto responder, but is there any difference between this and setting it with rules?
I would like to change the settings if it would improve the speed of AI analysis.
 
I am using auto responder, but is there any difference between this and setting it with rules?
I would like to change the settings if it would improve the speed of AI analysis.
AutoResponder in Fiddler does not send the request to OpenAI. It intercepts the request and provides a preconfigured response locally, bypassing the original server entirely. Custom Rules modify the request and still send it to the openAI server.
 
AutoResponder in Fiddler does not send the request to OpenAI. It intercepts the request and provides a preconfigured response locally, bypassing the original server entirely. Custom Rules modify the request and still send it to the openAI server.


if (oSession.host.toLowerCase() == "api.openai.com") {
// Ganti Authorization header dengan API key baru
oSession.oRequest["Authorization"] = "Bearer sk-YOUR-NEW-API-KEY-HERE";

// Ganti organization ID
oSession.oRequest["openai-organization"] = "org-YOUR-NEW-ORG-ID";
}

I used this code in fiddler classic and it worked. make sure you top up your Api Key balance
 
AutoResponder in Fiddler does not send the request to OpenAI. It intercepts the request and provides a preconfigured response locally, bypassing the original server entirely. Custom Rules modify the request and still send it to the openAI server.
I would like to know how to fix this error

p.s. solved
 

Attachments

  • Screenshot_2024-12-23-23-00-04-85_40deb401b9ffe8e1df2f1cc5ba480b12.jpg
    Screenshot_2024-12-23-23-00-04-85_40deb401b9ffe8e1df2f1cc5ba480b12.jpg
    108.2 KB · Views: 164
Last edited:
Back
Top