Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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 :)
nirvano if you say this is "open source", I'm sure our friends in this forum would be more than happy if .mq4 files were shared here.
I will share this file here so that our friends can get benefit from it.
Of course, if there is some one else can improve the EA's performance to make it...
There is a process imbalance between the HighestZigZag() function and the LowestZigZag() function, and the CheckFreshBreak() function is no longer needed.
I've done a small revision, where I also disable AutoStopLoss input, so you don't have to bother setting up AutoStopLoss again.
Here's the file:
Yes Jamil is right, there are errors on 2 "OrderSend" function because the SL got the wrong value.
Solution of this problem is very easy, just set your AutoStopLoss setup to FALSE:
Happy trading .. Have a nice day :)
Kalau broker yang dipakai adalah broker dengan reputasi internasional/ nasional baik, maka dipastikan kerugianmu murni MC.
Tambahkan modal, kurangi open trade, tingkatkan ilmu trading.
I have revised all the errors and some looping logic.
The file I sent is error free and no warnings at all.
This EA is profitable. As I show in the post above, it made 53% profit in July with 16% drawdown.
Good luck and happy trading. :-)
Use default settings, on H1 time frame.
And here is the result:
Notes:
The slight drawback of this EA is the slow backtest process, this is because the indicators work quite complexly.
Good luck and happy trading .. Have a nice day :-)
I sent the file that I have revised, either in .mq4 format, or in .ex4 format (compiled).
Hopefully it can be useful for SoeHoe members.
Note that I moved the indicator placement to the "Market" folder. It has become my habit, so that special indicators are not mixed with standard indicators...
Oh ya .. above is function for BUY signal.
This is the function for SELL signal.
Instead of using:
if(Open[0]>lowest_zigzag && Close[0]<lowest_zigzag && lowest_zigzag!=0 && CheckFreshBreak("Low",lowest_zigzag) && Timee!=Time[0])
Use this:
if(Close[1]<lowest_zigzag && Timee!=Time[0])
OK...
I give simple and profittable solution.
Instead of using:
if(Open[0]<highest_zigzag && Close[0]>highest_zigzag && highest_zigzag!=0 && CheckFreshBreak("High",highest_zigzag) && Timee!=Time[0])
to create signal.
Better use this:
if(Close[1]>highest_zigzag && Timee!=Time[0])
Then you will...
papa j I just renamed and moved the files from the root folder to the Market sub folder. There is no modification at all.
Rename is just to make writing easier, and moving it to the Market sub folder so that special indicators are not mixed with standard indicators. :)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.