• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:15pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:15pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

I will code your scalping EAs for no charge 54 replies

I will code your pivot EAs for no charge 20 replies

Need help to code EAs for MT4 and MT5 4 replies

EAs and indicators relating to moutaki... 22 replies

InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 41,040
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments
Tags: I will code your EAs and Indicators for no charge
Cancel

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 24852486Page 248724882489 2983
  • 1 Page 2487 2983
  •  
  • Post #49,721
  • Quote
  • Nov 11, 2021 4:10pm Nov 11, 2021 4:10pm
  •  Samalin
  • Joined Apr 2017 | Status: Member | 668 Posts
Quoting tintep
Disliked
{quote} Hi romulorios. I have this . I think it same you want . for C1-C5 = last candle bull bear. it have pairs changer. but you don,t change indicator name. {image} {file}
Ignored
Good day Sir Tintep and everyone in the thread

Please Sir Tintep can you share the parameters you used for the BB?
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot 2021-11-12 000714TINTEP.png
Size: 180 KB
 
 
  • Post #49,722
  • Quote
  • Nov 11, 2021 5:34pm Nov 11, 2021 5:34pm
  •  mring16
  • | Joined Aug 2016 | Status: Member | 134 Posts
Quoting PaulMF
Disliked
{quote} You may use this as a template for that purpose: #property copyright "PaulMF" #property link "https://www.forexfactory.com/paulmf" #property strict input double EquityChange = 10; // Equity Change double StartEquity = -1; int OnInit() { if(StartEquity < 0) StartEquity = AccountEquity(); EventSetTimer(60); return(INIT_SUCCEEDED); } double GetClosingPrice() { int type = OrderType(); if(type == OP_BUY) return SymbolInfoDouble(OrderSymbol(),SYMBOL_BID); else if(type == OP_SELL) return SymbolInfoDouble(OrderSymbol(),SYMBOL_ASK); return -1.0;...
Ignored
Thank you very much Paul I will try that out
 
1
  • Post #49,723
  • Quote
  • Nov 11, 2021 5:50pm Nov 11, 2021 5:50pm
  •  nikosk0
  • Joined Apr 2020 | Status: Member | 745 Posts
hi, i;ve searched a lot but cant find something that works, so i post it here in hope some has or can make one.

i need an ea that will close all trades on pc based off a proft target. it should work on all pairs.

example i have 2 sorts on uj and uc and another 2 longs on au and eu.

when the total profit of all those trades goes to "x" amount it should close them all.
also it should allow some room for closure before slipage, for example if you set profit closure at 1000, by the time the last trade is closed it might have gone back down to 950 and leave some trades open.

any help apreciated.
 
 
  • Post #49,724
  • Quote
  • Edited 6:21pm Nov 11, 2021 6:09pm | Edited 6:21pm
  •  PaulMF
  • Joined Apr 2020 | Status: Member | 866 Posts
Quoting nikosk0
Disliked
hi, i;ve searched a lot but cant find something that works, so i post it here in hope some has or can make one. i need an ea that will close all trades on pc based off a proft target. it should work on all pairs. example i have 2 sorts on uj and uc and another 2 longs on au and eu. when the total profit of all those trades goes to "x" amount it should close them all. also it should allow some room for closure before slipage, for example if you set profit closure at 1000, by the time the last trade is closed it might have gone back down to 950 and...
Ignored
Basically, you need something like this:

Quoting PaulMF
Disliked
{quote} You may use this as a template for that purpose: #property copyright "PaulMF" #property link "https://www.forexfactory.com/paulmf" #property strict input double EquityChange = 10; // Equity Change double StartEquity = -1; int OnInit() { if(StartEquity < 0) StartEquity = AccountEquity(); EventSetTimer(60); return(INIT_SUCCEEDED); } double GetClosingPrice() { int type = OrderType(); if(type == OP_BUY) return SymbolInfoDouble(OrderSymbol(),SYMBOL_BID); else if(type == OP_SELL) return SymbolInfoDouble(OrderSymbol(),SYMBOL_ASK); return -1.0;...
Ignored
Not sure about the "slippage" thing you mention at the end of the post.

However, not sure what you are after in the part where you mention the slippage.

Attached File(s)
File Type: ex4 CloseAllAt.ex4   7 KB | 66 downloads
Attached File(s)
File Type: mq4 CloseAllAt.mq4   1 KB | 109 downloads
Always ready to help
 
 
  • Post #49,725
  • Quote
  • Nov 11, 2021 6:29pm Nov 11, 2021 6:29pm
  •  nikosk0
  • Joined Apr 2020 | Status: Member | 745 Posts
Quoting PaulMF
Disliked
{quote} Basically, you need something like this: {quote} Not sure about the "slippage" thing you mention at the end of the post. However, not sure what you are after in the part where you mention the slippage. {file}{file}
Ignored
by slipage i mean if selected equity drops below a certain value in miliseconds it might stop working. thats all.

i;vw seen complaints about it.

i'll try out mate, thanks
 
 
  • Post #49,726
  • Quote
  • Nov 11, 2021 6:35pm Nov 11, 2021 6:35pm
  •  PaulMF
  • Joined Apr 2020 | Status: Member | 866 Posts
Quoting nikosk0
Disliked
{quote} by slipage i mean if selected equity drops below a certain value in miliseconds it might stop working. thats all. i;vw seen complaints about it. i'll try out mate, thanks
Ignored
Well there is no way to avoid slippage. So, if you set your target at 1,000 you may finally get 950 or 1,050. Or whatever other value around these.
Always ready to help
 
1
  • Post #49,727
  • Quote
  • Nov 11, 2021 6:39pm Nov 11, 2021 6:39pm
  •  romulorios
  • | Joined Dec 2020 | Status: Exit | 220 Posts
Quoting mntiwana
Disliked
{quote} I guess and doubts it is "Hodrick Prescott hilo channel" or "Hodrick Prescott filter hilo channel" but experts can better tell you - and if it is that it can repaint,check it your way in example picture the Aqua line is from Hodrick Prescott MA {image}
Ignored

why did you cover the name of the indicator? Is it for anyone to search the internet? Selfishness?
 
 
  • Post #49,728
  • Quote
  • Nov 11, 2021 6:47pm Nov 11, 2021 6:47pm
  •  lovattrader
  • | Joined Aug 2021 | Status: Member | 34 Posts
Quoting cja
Disliked
{quote} I have updated both versions for multi sessions and I have also changed the Comments code so the user can load separate Comments for each session. Use the shift inputs to shift the Comments and make sure to use a new Unique ID number for each new session. NOTE : You cannot change the name in any way because the indicator will not work. {file} {image} {file} {image}
Ignored


have this mt5 indicator? i am looking for a long time for mt5.
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot_1.png
Size: 57 KB
 
 
  • Post #49,729
  • Quote
  • Nov 11, 2021 7:21pm Nov 11, 2021 7:21pm
  •  traderallan1
  • | Joined Aug 2021 | Status: Junior Member | 2 Posts
Hi folks. Im sort of a newbie because I had to sign up again after forgetting my user and password although I have been a member for many years.
so I cant start a new thread yet.
Ive been trading over 35 years and got hooked on EA's about 15 years ago before they were popular.
I,m sorry for cutting in but at last count I had over 1000 EAs and Indicators probably double that now, many I paid good money for and many free ones but
I would say better than most.
My first EA was a purchased, forex megadroid and then armaggeddon, life changer etc, all popular at the time.
I,m now disabled in a nursing home after a failed back operation put me in a wheelchair. But still kicking.
At first my idea was to start up an EA Robots web site. I still have all the web hosting domain names Wordpress installed etc but I,m past that now. so I thought i could share them but not too sure how that would work out either.Thats why I thought a big site like this may use them.
They are all mixed up, some don,t work and too hard for me to start now. I really wanted to send this to the admin of FF but couldn't find a link anywhere
and can't create a new thread so I,m open to ideas.
Once again sorry for cutting in.
Regards: TraderAllan1
 
 
  • Post #49,730
  • Quote
  • Edited 8:21pm Nov 11, 2021 8:00pm | Edited 8:21pm
  •  John4y
  • Joined Mar 2021 | Status: Member | 424 Posts
I've made a little indicator showing the Force of Price Amplitude on the run, so you can see Momentum increase/decrease for better Open/Close of positions
Same time you can monitor Market 'Choppiness'
Maybe it can help someone to time entries
Attached File(s)
File Type: ex4 AMPL.ex4   9 KB | 192 downloads
 
3
  • Post #49,731
  • Quote
  • Nov 12, 2021 12:52am Nov 12, 2021 12:52am
  •  Samalin
  • Joined Apr 2017 | Status: Member | 668 Posts
Quoting John4y
Disliked
I've made a little indicator showing the Force of Price Amplitude on the run, so you can see Momentum increase/decrease for better Open/Close of positions Same time you can monitor Market 'Choppiness' Maybe it can help someone to time entries {file}
Ignored
Thanks Sir for sharing your wonderful tool
 
 
  • Post #49,732
  • Quote
  • Edited 2:01am Nov 12, 2021 1:36am | Edited 2:01am
  •  eukiller
  • | Joined Jul 2015 | Status: Member | 26 Posts
please modifie this indicator
to ad quarterly period
6month period
and year period
Attached File(s)
File Type: mq4 M-Candles.mq4   8 KB | 95 downloads
 
 
  • Post #49,733
  • Quote
  • Edited 2:04am Nov 12, 2021 1:49am | Edited 2:04am
  •  eukiller
  • | Joined Jul 2015 | Status: Member | 26 Posts
i draw it with my eye and hand
very troubled
..yellow and wtihe box
it is three months pereod
Attached Image (click to enlarge)
Click to Enlarge

Name: Capture99.JPG
Size: 210 KB
 
 
  • Post #49,734
  • Quote
  • Nov 12, 2021 1:59am Nov 12, 2021 1:59am
  •  eukiller
  • | Joined Jul 2015 | Status: Member | 26 Posts
G/U combine
Quarterly (by my hand)
Monthly (by Mcandle indicator)
and weekly
Attached Image (click to enlarge)
Click to Enlarge

Name: GBPUSDWeekly2.png
Size: 150 KB
 
 
  • Post #49,735
  • Quote
  • Edited 6:32am Nov 12, 2021 2:50am | Edited 6:32am
  •  birpinar
  • Joined Feb 2016 | Status: Trading Live. | 430 Posts
Quoting cja
Disliked
{quote} Made MTF and added color options, I kept the original zones as your image was quite different to the posted indicator so I was unsure exactly what you wanted. {file} Updated version with zone labels and a few more options in the inputs. {file}{image}
Ignored
Thank you vey much Cja. You are a very nice guy and a great coder.

I have a small fix request. Details sent as pm. Edit: Cja fixed the small problem and reposted the indicator in the same post.

Regards.
There are no weapons that will form against my financial prosperity.
 
 
  • Post #49,736
  • Quote
  • Nov 12, 2021 7:32am Nov 12, 2021 7:32am
  •  Mohamad2020
  • | Joined Nov 2021 | Status: Junior Member | 3 Posts
Quoting mntiwana
Disliked
{quote} Post some demonstrating example pictures how it would looks like,do not push to other links
Ignored
thanks for the tip
as we can see in the right picture when drag "xo" indicator on the chart in draws histograms on main chart and main candles are still there and cant say ea trade on those histograms not on candles.

and in the left picture the candles are exactly what we see in the right but on offline chart that i build that by another indicator unfortunatly it is expired.
my idea is somehow combine "xO" indicator with any kind of Renko offline chart generators to build that continuously but it needs coding

Attached Image (click to enlarge)
Click to Enlarge

Name: pic1.png
Size: 40 KB
 
 
  • Post #49,737
  • Quote
  • Edited 8:07am Nov 12, 2021 7:54am | Edited 8:07am
  •  Samalin
  • Joined Apr 2017 | Status: Member | 668 Posts
Good day Coders and traders, thanks for sharing and helping, may you continue find success in all you do

i understand theres lot size calculator, or indicator that determines SL/TP in pips but

for example i want to immediately know how much cost 0.02 lot with 50pips Stoploss will cost if i loss, and what 0.02 lot with 50pips takeprofit will cost if i profit
in trade cost(not pips)
is there any EA/indicator that will help to know this on this pair/broker?
 
 
  • Post #49,738
  • Quote
  • Nov 12, 2021 8:22am Nov 12, 2021 8:22am
  •  PaulMF
  • Joined Apr 2020 | Status: Member | 866 Posts
Quoting Samalin
Disliked
Good day Coders and traders, thanks for sharing and helping, may you continue find success in all you do i understand theres lot size calculator, or indicator that determines SL/TP in pips but for example i want to immediately know how much cost 0.02 lot with 50pips Stoploss will cost if i loss, and what 0.02 lot with 50pips takeprofit will cost if i profit in trade cost(not pips) is there any EA/indicator that will help to know this on this pair/broker?
Ignored
Sure they are. It can be coded. If no user shares a link to one of those, maybe I create and share one soon.
Always ready to help
 
 
  • Post #49,739
  • Quote
  • Nov 12, 2021 8:51am Nov 12, 2021 8:51am
  •  Samalin
  • Joined Apr 2017 | Status: Member | 668 Posts
Quoting PaulMF
Disliked
{quote} Sure they are. It can be coded. If no user shares a link to one of those, maybe I create and share one soon.
Ignored
Please thanks
 
 
  • Post #49,740
  • Quote
  • Edited 3:17pm Nov 12, 2021 11:43am | Edited 3:17pm
  •  ntk
  • Joined Dec 2018 | Status: Member | 1,227 Posts
To all the good coders pls explain the logic in this ea.

who is JM? are we allowed to modify his code? how can we ask JM may be for modify the code?t please correct me if code works perfectly

The logic in here like I understood is monitor the equity set max and min level, if minimum is hit close all orders, that is fine. what I dont understand is why it monitor the const min level while price rises, and when max is hit close all orders too???? You learn 10 yrs for forex trading, when you earn 2$, then close the book and apply for pension? .... that could not be no logical at all ... Or do I misunderstand it?

What is the step parameter for and why set default to =2.... i mean I am missing something here, 2 what?
2 $, 2 percent, 2 point, 2 pips? So step =2 does not make sense.... If I invest with account size <100, and max equity target is reached then monitor max equity target +2 dollars ... makes some sense; but if the account is 1K, 10K, 25K, 100K, 1 Bil then protect then step with the 2$ is ridicule small for any common sense ....... that could not be no logical at all ... Or do I misunderstand it?

Could an code pls help to modify,
1/ the step should be turn in percent; or maybe leave it as it is I will use some sensible value for it (under the condition I undestood the code right, if not that then please correct me)
2/ when price heads to equity target to achieve max target, if equity increased by 10 perc, pendle minium equity target to (10 perc * current equity target or (max equity target- min equity target )/2 or min equity target +Step ... so min equity target should increased with profit price increased
because current code seems to keep min const so if price rise but not hit max target, it still could be running back/decreased then find the sleeping beauty const min target ... then booom ... END OF THE GAME: half a day running, ends with nothing, or you end up waste the time and even earned a loss too, although when you switched this ea on you were in some profit which you very much like to keep, hence you use the ea ...

Keep min equity target = const, that could not be no logical at all ... Or do I misunderstand it?

PS:
I still thanks JM for releasing the ea with code so at least one couriousity tempted to try to understand the logic, I really do not want to critic on you JM, I appreciated for the work the template you have provided I just like to get these code more effective ... If I understand you right, if I am wrong pls correct me. If I went too far please forgive me, I apology to you


Example:

Current equity 1000, you run trade and see you won 25 $ so your current equity goes to 1005$, you switch on the equityguard, to protect at least the 5$, but should also leave room for price to breath, so you set max= 1050, min = 995, step =10$. a

So when equity reachs 1050, nice, your max turns to 1060=1050+10, but you should move milestone for min the whole time too too, like when price reaches 1035 then Step is 10 > diff=(1035-995)/2, if YES then use 10+min=1005, else use diff+min=1015;
because if not moving min's goal from 995 to 1035-10 or at least 1035-20, price past 1050 but could not reaches 1060 now retraced back down and found your const min setting and you lose all your profit, and lost extra 5$ for switch on the Guard too, hillarious, so thanks for nothing... well at least you could have your beauty sleep
Attached File(s)
File Type: mq4 EquityGuard JM.mq4   24 KB | 186 downloads
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 24852486Page 248724882489 2983
    • 1 Page 2487 2983
17 traders viewing now, 3 are members:
joseweyne13
,
Invisible
,
Marcus05
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023