• 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 try this ea and give me your result

I have done multiple back tests. same consistency across the board with 90% modeling quality. 15m GBPJPY for 90 days on a $1000 account. great results so far and the Draw down is indeed much better now. I tried the 1H back test and I was getting high draw downs with the same dates as the 15 minute set file back tests. the lower the spread the better the results from my experience. I will mess around with the coef std and try other pairs.

upload_2024-8-23_2-2-55.png


H1 test results
upload_2024-8-23_3-18-8.png
 

Attachments

  • upload_2024-8-23_1-58-28.png
    upload_2024-8-23_1-58-28.png
    148.1 KB · Views: 10
  • upload_2024-8-23_2-2-55.png
    upload_2024-8-23_2-2-55.png
    149.5 KB · Views: 301
  • upload_2024-8-23_3-18-8.png
    upload_2024-8-23_3-18-8.png
    153.2 KB · Views: 300
Please explain me what is 'coef std' ....What does it mean and what is it's function ? Probably , many of us have similar question about EA's Inputs ...Thanks
.

COEF STD = the minimum evolution between previous and current StdDev indicator
double KStd= 1+Coef_Std;
double stdCurrent = iStdDev(Symbol(),0,10,0,MODE_EMA,PRICE_CLOSE,Current + 0);
double stdPrevious = iStdDev(Symbol(),0,10,0,MODE_EMA,PRICE_CLOSE,Current + 1);
stdCurrent > KStd*stdPrevious
 
Back
Top