• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 1:38am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 1:38am
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 28412842Page 284328442845 2982
  • 1 Page 2843 2982
  •  
  • Post #56,841
  • Quote
  • Edited 8:52am Nov 28, 2022 8:34am | Edited 8:52am
  •  walvekarraje
  • Joined Feb 2019 | Status: Member | 336 Posts
Quoting BestTraderEv
Disliked
{quote} Please post your request again. Please include the mq4 file. Please write down exactly the conditions you want for the alerts.
Ignored
i was able to fix the alerts by changing values in line 318,327,339,349,362,372.
i changed value 2 to 1 and value 1 to 0.
after this the alerts are working perfectly as i wanted.
unbelieveable because i have zero knowledge of coding or mathemetics ( i am a doctor by profession)

i need only a small favour BestTraderEv sir. i want alerts only at the candle close. the indicator is attached below
please help.
Attached File(s)
File Type: mq4 rsioma_v3_alerts fix.mq4   26 KB | 93 downloads


thanks in advance.
 
 
  • Post #56,842
  • Quote
  • Nov 28, 2022 8:51am Nov 28, 2022 8:51am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting BOGAT
Disliked
Hello, is it possible to make enable push and eMail alerts based on CLOSED CANDLE and colour change. Input triger would be just name of the colour, one for sell and one for buy. Based on BIONICS attached indicator, Results; First scenario - Triger(Blue) for = Msg(Sell), Nameofsecurity(), DateTime() Secon scenario - Triger(Yellow) for = Msg(Buy), Nameofsecurity(), DateTime() i have found just this part of code, maybe it can help you: ... if Open[2]<Close[2] // is 'up' bar, e.g. 'blue' else // is down bar, e.g. 'red' ... if Open[1]<Close[1] // is...
Ignored
Do you have the mq4 file?
If not, nothing can be done, because this indicator doesn't even output any buffer data.
 
1
  • Post #56,843
  • Quote
  • Nov 28, 2022 8:55am Nov 28, 2022 8:55am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting Slingshots1
Disliked
{quote} Thanks for yesterday please educate me any idea why the candlestick signal will display a bullish alert while its in the sell mode? For instance as at 7;53am this morning it gave the alert as attached screenshot.Thanks {image}
Ignored
Because it repaints. Arrows, lines and texts appear, you get an alert, then they get deleted, because the price went the other way, but the alerts don't get deleted.
 
 
  • Post #56,844
  • Quote
  • Nov 28, 2022 9:18am Nov 28, 2022 9:18am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting walvekarraje
Disliked
{quote} i was able to fix the alerts by changing values in line 318,327,339,349,362,372. i changed value 2 to 1 and value 1 to 0. after this the alerts are working perfectly as i wanted. unbelieveable because i have zero knowledge of coding or mathemetics ( i am a doctor by profession) i need only a small favour BestTraderEv sir. i want alerts only at the candle close. the indicator is attached below please help. {file} thanks in advance.
Ignored
New input for that.
Just that you know, it is not possible to have an alert on Close.
It is always when volume on the new Bar is >1.
There is no such event as Bar Close or Bar Open.
The Close price is the last price receiced from the broker's server - it has nothing to do with time, either.
The Open Price is the first price received from the broker's server - it has nothing to do with time, either.
The prices come in when they come in.
Attached File(s)
File Type: mq4 rsioma_v3_alerts fix.mq4   27 KB | 66 downloads
 
 
  • Post #56,845
  • Quote
  • Nov 28, 2022 9:23am Nov 28, 2022 9:23am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting akndid
Disliked
anyone can share this indicator and the setting please here is the picture https://c.mql5.com/forextsd/forum/97/tma_lwma.gif
Ignored
Look around on forex-station.com or in other places where you can find mladen and his indicators.
Maybe even here on FF?

BTW, you can get that result with this one:
https://www.forexfactory.com/attachm...1?d=1669631053
 
 
  • Post #56,846
  • Quote
  • Nov 28, 2022 9:36am Nov 28, 2022 9:36am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting Trishana
Disliked
{quote} I have tried this indi and found it repaints. It will send you a notification when a pattern is formed, but then price runs and that pattern becomes incorrect, it will clear itself on chart.
Ignored
The teachings of Japanese Candlestick Patterns tell us that any pattern is valid when the price respects it.
The problem is with coding the "when the price respects it".
The indicator only detects the patterns as they appear, and deletes the signals when the given pattern is rejected.
The indicator can not delete alert messages.
They get deleted only by the MT4 rules.
 
1
  • Post #56,847
  • Quote
  • Nov 28, 2022 9:39am Nov 28, 2022 9:39am
  •  walvekarraje
  • Joined Feb 2019 | Status: Member | 336 Posts
Quoting BestTraderEv
Disliked
{quote} New input for that. Just that you know, it is not possible to have an alert on Close. It is always when volume on the new Bar is >1. There is no such event as Bar Close or Bar Open. The Close price is the last price receiced from the broker's server - it has nothing to do with time, either. The Open Price is the first price received from the broker's server - it has nothing to do with time, either. The prices come in when they come in. {file}
Ignored
many thanks for the quick response sir.
if you undo my changes and fix the alerts in your expert way, is it possible to get alerts on the bar close?

i just require alerts when the indicator line (rsioma) crosses levels 80 and 90 from above below and 10 and 20 from below above on gandle close.

the original indicator without any changes is here.....
Attached File(s)
File Type: mq4 rsioma_v3_alerts.mq4   13 KB | 58 downloads

Attached Image (click to enlarge)
Click to Enlarge

Name: rsioma request 1.png
Size: 5 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: rsioma request 2.png
Size: 7 KB
thanks again
 
 
  • Post #56,848
  • Quote
  • Nov 28, 2022 9:47am Nov 28, 2022 9:47am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting doerpn
Disliked
Hello traders, have a big problem...which probably a lot of you have too: on my chart there are several indis and tools. To get a better overview I run charts of all instruments I want to trade at once. Depending on the indis loaded the screen freezes...very frustrating! {image} Now my question: Is there a tool, indicator or something else to measure how many % of the working memory consumes each of the attached indicators ? With this information I am able to eliminate the big one memory overeater and find another...
Ignored
That's not so simple.
Basically you have the Task Manager in Windows, so theoretically you could load one indicator at a time adn observe what happens. But, the problem is not so simple. First, MT4 is a single thread program, so it realyy won't help how much memory you have or how many cores. Plus, it also depends on the volumes of ticks comming in at the specific time. Generally, the more charts you will have opened with all those indicators, the worst it is going to get.
You can try going to Tools -> Options -> Charts and limiting the Max bars values.
 
 
  • Post #56,849
  • Quote
  • Nov 28, 2022 9:53am Nov 28, 2022 9:53am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting walvekarraje
Disliked
{quote} many thanks for the quick response sir. if you undo my changes and fix the alerts in your expert way, is it possible to get alerts on the bar close? i just require alerts when the indicator line (rsioma) crosses levels 80 and 90 from above below and 10 and 20 from below above on gandle close. the original indicator without any changes is here.....{file} {image}{image} thanks again
Ignored
Yeah I was going to comment that as a doctor you wouldn't take out the appendix to fix a toothache ... I hope?
This indicator does not provide this specific alert, but the solution is easy, just change the OBOS levels in the indicator!
If you are interested in the 70/30 scenario, you don't need the 90/10. You could simply change the 90/10 to 73/30 and you will get what you want. Unless your condition is that it must first be at 90/10 and then cross 70/30?
If it's already at 90/10, then what good is the 70/30?
I don't see the logic...
 
 
  • Post #56,850
  • Quote
  • Nov 28, 2022 10:15am Nov 28, 2022 10:15am
  •  walvekarraje
  • Joined Feb 2019 | Status: Member | 336 Posts
Quoting BestTraderEv
Disliked
{quote} Yeah I was going to comment that as a doctor you wouldn't take out the appendix to fix a toothache ... I hope? This indicator does not provide this specific alert, but the solution is easy, just change the OBOS levels in the indicator! If you are interested in the 70/30 scenario, you don't need the 90/10. You coiuld simply change the 90/10 to 73/30 and you will get what you want.
Ignored
agreed about the appendix and toothache

i am interested in 90/10 scenerio. unfortunately the indicator does not generate proper alerts. not for 70/30 neither for 90/10

secondly as you correctly said the the code is by Mladen (as i can see from the other rsioma indicators i have) but this version appears to be modified by someone with limited coding skills. his intent was good but probably he was not able to acheive it.( i might be wrong).

thirdly i find this indicator / oscillator the best of all i have used. i am using this without alerts with descently good results. with my daily schedule ( i am a cancer surgeon ) if i can get proper alerts, it will help me for trading as well. trading is my hobby, i am not a compulsive trader.

i will really appreciate any help.

thanks again.
 
1
  • Post #56,851
  • Quote
  • Nov 28, 2022 10:16am Nov 28, 2022 10:16am
  •  Cheba
  • | Joined Aug 2016 | Status: Member | 15 Posts
Quoting Slingshots1
Disliked
{quote} Search here try and go back to the page before this it's called Candlesticksignal
Ignored
Thank you !!!
 
 
  • Post #56,852
  • Quote
  • Nov 28, 2022 10:32am Nov 28, 2022 10:32am
  •  doerpn
  • | Joined Mar 2014 | Status: MEMBER | 749 Posts
Quoting BestTraderEv
Disliked
{quote} That's not so simple. Basically you have the Task Manager in Windows, so theoretically you could load one indicator at a time adn observe what happens. But, the problem is not so simple. First, MT4 is a single thread program, so it realyy won't help how much memory you have or how many cores. Plus, it also depends on the volumes of ticks comming in at the specific time. Generally, the more charts you will have opened with all those indicators, the worst it is going to get. You can try going to Tools -> Options -> Charts and...
Ignored
Ah ok...thanks for the info......good idea...will try....
Have a nice day
 
 
  • Post #56,853
  • Quote
  • Nov 28, 2022 10:44am Nov 28, 2022 10:44am
  •  aslam239087
  • | Joined Jul 2022 | Status: Member | 40 Posts
Hi,
I want such an indicator or script which should show time passed in form of percentage. The indicator should have two inputs for setting Time duration. One input should as Starting Duration from and other one as Ending Duration On.
Examples:
Let's say set this duration
Starting Duration from=7:00
Ending Duration On=24:00

  1. Let’s say time right now is 7:00 so it should display this Time Passed 0 %
  2. If time is 8:00 then it should display this Time Passed 6 % (actual value is 5.88%, but round it off)
  3. Same way if time is 9:19 then it should display this Time Passed 14% (actual value is 13.627% but round it off)

My local time is GMT+5.
I will be very thankful to You

 
 
  • Post #56,854
  • Quote
  • Nov 28, 2022 10:47am Nov 28, 2022 10:47am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting Samalin
Disliked
Thank you for all your help in this thread, please i need help in advise or reference indicator, ADVICE-- can i realize this idea or am looking for the impossible? i am trying to make all indicators i use to be rigid, if indicator meet criteria i open a trade, so that i will not apply emotions or assumption, this particular indicator i plan to use for Timing is not specific in criteria, the attached image explains the situation, i supposed to buy from 20, if i make it 70/30 then i will be buying a sell market, i have tried every settings but this...
Ignored
Of course there IS NO IDEAL indicator!
Did you know, that the indications of a specific indicator with the same settings will be different on each broker's quotations? And sometimes they can be very different!
Tell me, what good is any such indicator, if there is no set rules or no one market quotation (chart)?
This is all a big load of BullShit!!!!
 
1
  • Post #56,855
  • Quote
  • Edited 11:22am Nov 28, 2022 11:07am | Edited 11:22am
  •  Aghostinplai
  • | Joined Apr 2020 | Status: Member | 109 Posts
@BestTraderEv please can you help with a clock or stopwatch indicator?

For example, if the time is 8:00am, and I want the indicator to alert me by 9:00 am and every 15 minutes after

So the indicator will alert me by 9:00 am and then by 9:15, then 9:30, then 9:45 e.t.c

Thanks in advance
 
 
  • Post #56,856
  • Quote
  • Nov 28, 2022 11:24am Nov 28, 2022 11:24am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting aslam239087
Disliked
{quote} Hi Sir, Please sir please change EPL percentage with respect to Previous balance as I have shown in the attached image. {image}
Ignored
Attached File(s)
File Type: ex4 AccountBalanceEquityChange.ex4   26 KB | 46 downloads
 
 
  • Post #56,857
  • Quote
  • Nov 28, 2022 11:31am Nov 28, 2022 11:31am
  •  aslam239087
  • | Joined Jul 2022 | Status: Member | 40 Posts
Quoting BestTraderEv
Disliked
{quote} {file}
Ignored
Hi Sir Thank you so much. It worked perfectly with no issue. I am very very thankful to you sir.

Sir can you please share with me the MT4 MQ4 file of this please?
 
 
  • Post #56,858
  • Quote
  • Nov 28, 2022 11:31am Nov 28, 2022 11:31am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting VikThor1
Disliked
Somebody can help me fix these indicators? It's the same indicator, but I'd like to use one of them as a higher timeframe confirmation. So I made a copy and give it higher inputs. When I attach both on the chart one of them don't show me the "HH,HL,LL,LH" signs. Is it possible to fix them? {file} {file}
Ignored
You will only need one, just change the IndiID for the second instance.
Attached File(s)
File Type: mq4 ZigZag_HH-HL-LH-LL_HTF.mq4   49 KB | 83 downloads
 
 
  • Post #56,859
  • Quote
  • Nov 28, 2022 11:46am Nov 28, 2022 11:46am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting aslam239087
Disliked
Sir can you please share with me the MT4 MQ4 file of this please?
Ignored
No.
 
 
  • Post #56,860
  • Quote
  • Nov 28, 2022 11:48am Nov 28, 2022 11:48am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting Aghostinplai
Disliked
@BestTraderEv please can you help with a clock or stopwatch indicator? For example, if the time is 8:00am, and I want the indicator to alert me by 9:00 am and every 15 minutes after So the indicator will alert me by 9:00 am and then by 9:15, then 9:30, then 9:45 e.t.c Thanks in advance
Ignored
Why do you need an indicator for this?
Don't you have Alexa, or simply a smartphone, or just your computer will do that!

How about this?
https://www.mql5.com/en/market/produ....google.com%2F
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 28412842Page 284328442845 2982
    • 1 Page 2843 2982
22 traders viewing now, 1 is a member:
desoed
  • 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