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

Options

Search
Search
Search

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Fixing Your Indicators or EAs (Free) 346 replies

Coding robots and indicators in C# for no charge (cTrader API) 144 replies

EAs and indicators relating to moutaki... 22 replies

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

Oanda MT4 - Indicators and EAs not showing 0 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 20,785
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 15661567Page 156815691570 1587
  • 1 Page 1568 1587
  •  
  • Post #31,341
  • Quote
  • Nov 11, 2019 12:27pm Nov 11, 2019 12:27pm
  •  rollertrade
  • | Joined Oct 2016 | Status: Member | 4 Posts
Hi, i been searching for indicator that show line all the history of Open High Low for
1.Previous Year
2.Opening of Previous Year
3.Half year
4.Quarter year
  • Post #31,342
  • Quote
  • Nov 11, 2019 8:31pm Nov 11, 2019 8:31pm
  •  OutThere
  • Joined Aug 2018 | Status: Member | 673 Posts
Here is a project for someone skillful:
Basically this is an elaborate ADR indy.
It shows individual monthly ADR for the past 12 month plus the current month.

The first 12 bars on the left are the months of the last year plus the current one (bar 13th).

Then there is a divider and we have have a bar for the average annual ADR.
After that we have 2 more bars with XD (Xnumber of Days) on them. That means the user can choose the bars as they wish. They can make one for one week (which I think would be 6 days including Sunday) or whatever length of days the decide. The next XD is the same as last one. If one week was chosen in the first XD, then maybe we want to put 2 days or X minutes or whatever in the 2nd XD. The last bar on the right is the current ADR (T as in Today).

Obviously this is just a graphic display and the layout or colors don't matter as long is the core idea is implemented.
I was going to write the ADR numbers on the bars but got too lazy. They should be there obviously in the real version.'

Any improvement ideas welcomed.
Attached Image (click to enlarge)
Click to Enlarge

Name: ADR Indy.jpg
Size: 26 KB
1
  • Post #31,343
  • Quote
  • Nov 11, 2019 8:43pm Nov 11, 2019 8:43pm
  •  jiva34
  • Joined Mar 2009 | Status: Just visiting | 12,891 Posts
Couldn't seem to find anyone to make some upgrades to my robot either for free or a reasonable fee. Found ferrufx. Can't say enough about him. Great job. Price was right. http://www.ervent.net/
I'm soooo happy...
  • Post #31,344
  • Quote
  • Nov 12, 2019 12:15am Nov 12, 2019 12:15am
  •  ffjbentz
  • | Joined Jul 2009 | Status: Member | 126 Posts
Quoting Afrodeenn
Disliked
Anyone please make ea with this code Thanks extern bool use_bb=true; extern int bb_period=20; extern int bb_deviation=2; extern int bb_shift=0; extern bool use_stoch=true; extern int k=5; extern int d=3; extern int slowing=3; extern int price_field=0; extern int stoch_shift=0; extern int lo_level=30; extern int up_level=70; extern bool use_rsi=true; extern int rsi_period=12; extern int rsi_shift=0; extern int lower=30; extern int upper=70; extern bool use_adx=true; extern int ADX=7; extern int adxTrigger=23; { double upBB=iBands(Symbol(),0,bb_period,bb_deviation,0,PRICE_CLOSE,MODE_UPPER,bb_shift);...
Ignored
Well, you didn't mention other items such as TakeProfit, StopLoss, how many trades per day, other methods of closing, or lot size, etc. So I just used an existing EA module I have for all that.

Here is the EA. With your settings default, and TP=100 and SL=50, it's not a winner, not a loser, just middle. But if you play with the settings, you might make it profitable.

Good luck.
Attached File
File Type: mq4 indicators_ea_v1.mq4   33 KB | 81 downloads


p.s. your code went in perfectly without any errors. Thanks for that.
  • Post #31,345
  • Quote
  • Nov 12, 2019 3:32am Nov 12, 2019 3:32am
  •  Godwin Igili
  • Joined May 2011 | Status: Member | 196 Posts
Quoting Godwin Igili
Disliked
Dear Coders, I am not a coder, I have only been doing copy and past coding. I will appreciate anyone assisting to rectify the code and remove the 2 errors and if possible help to remove the warnings in the code. I am trying to get the Average of the the following 8 Rsi's. That is,I want to the sum of the 8 RSI(Rsi2_h4,Rsi2_d1,Rsi2_w1,Rsi2_mn, Rsi9_h4,Rsi9_d1,Rsi9_w1,Rsi9_mn) divded by the numbers of Rsi which is 8. Is the MathMax function okay in getting the required Average double Rsi2_h4 = iRSI(Symbol(),RunTF_h4,rsi_period,rsi_applied,0); double...
Ignored
I am happily and graciously thanking Hanover for the PM you sent
to me in respect of my code fix request.
You are a good, nice and selfless human being.
Though your PM is restricted , I still sent my thank you privately.

Also, thank you to Beerrun for your past assistance.

And all the in house coders, for your selfless and free coding helps to
we non coders, thank you very much.
2
  • Post #31,346
  • Quote
  • Nov 12, 2019 10:19am Nov 12, 2019 10:19am
  •  olwethufx
  • | Joined Sep 2016 | Status: Member | 8 Posts
Hi traders and coders, wondering if anyone can heed my request to turn an indicator, into an EA. I am not a coder, but have been dabling about in metaeditor, changing and tinkering, I'm also slowly learning coding on Jim's channel. I have been trading with 75% success using this below attached indi. and believe the success rate can go considerably up, if it were an EA that could execute faster at market. Essentilly the indi has 3 buffers, Red line, Green Line and Yellow MA, but focus is on the green and red. tried to call the indi using iCustom, but since I'm a newbie, lots of errors popped up and I'm yet to learn how to fix

EA should have:

1. Keep all external indicator settings the same.
2. EA take buy when line turns green
3. EA take sell when line turns red
4. EA closes buy and takes sells when line turns red
5. EA closes sell and takes buy when line turns green
6. Add TP, SL, Trailing stop, lot size option, number of trades (give ext functions)
7. If SL is hit (whether set manually or through EA settings, the EA must enter another buy stop or sell stop order at the point it took the last trade (bool this one for true or false) to toggle if a trader wants to use this option or not
7. Works on all current time frames (default), with ext option to select specific timeframe

The indi does not necesarilly repaint but has a habit of flickering to the next colour more or less around the time it is about to change. Best results achieved on H4 timeframe. Hopefully a coder may find this interesting and usefull enough to donate their precious time and skill.

Cheers
Attached Image (click to enlarge)
Click to Enlarge

Name: Capturfffe.PNG
Size: 49 KB
Attached File
File Type: mq4 TraendSpotter by LethuM.mq4   6 KB | 147 downloads
  • Post #31,347
  • Quote
  • Nov 12, 2019 10:32am Nov 12, 2019 10:32am
  •  kubervivek
  • | Joined Feb 2016 | Status: Member | 21 Posts
Quoting loqito
Disliked
it seems that not only me having troubles with this old indicator. Indicator was posted yesterday in this thread. Indicator gives some very good signals. https://www.forexfactory.com/showthr...4#post12602654 the problem is, that my whole mt4 terminal is shutting down when i am trying to change tf of chart with indicator attached. Or when i am trying to change the settings of indicator. May be some kind person can take a look at that indi and fix the problem? Thanks in advance. P.s. Fixed by mapseam.
Ignored
it does the same even with the new versions
Attached Files
File Type: ex4 MT4-LevelStop-Reverse-v2_12bar(trueforex.pp.ua).ex4   21 KB | 47 downloads
File Type: ex4 MT4-LevelStop-Reverse-v2.01(trueforex.pp.ua).ex4   20 KB | 54 downloads
  • Post #31,348
  • Quote
  • Nov 12, 2019 10:33am Nov 12, 2019 10:33am
  •  shins1987
  • | New Member | Status: Junior Member | 5 Posts
Hi everyone,

I'm trying to code a logic as below:

If there was a buy signal triggered from 1. crossing 25SMA to the upside, 2. MACD and singal line crossover to the upside and 3. RSI crossing midline upwards, but the trade got closed out early by a random F U candle.
If the price manages to stay about the 25 SMA and only the MACD line crosses over to the upside again, go ahead and enter the buy trade by ignoring the RSI.

I'm wondering how I should set up a condition for EA to check that there was a trade earlier within the period while price stays above the SMA.
Would be wonderful if I can get some advice on how to go about this.

Thank you

  • Post #31,349
  • Quote
  • Nov 12, 2019 11:00am Nov 12, 2019 11:00am
  •  lixiaomai007
  • | Joined Oct 2019 | Status: Member | 8 Posts
Dear FFs,
If I violate this post rules or made someone unhappy, please accept my apologize in advance.
So I found this X super trend indicator and it will turn candles red if there is a down trend and turn blue for the up trend (please see the screen shot). I just wondering is it possible to add an arrow sign and alert on it when the candles turns?

if add arrow signs is possible, could we make a dashboard for it to monitoring all the pairs....

I am just about starting learn how to program mt4 and still feel like I'm a idiot, all I know right now are what's variables, function or some really basic stuffs. every time when I opened a indicator/EA code, I felt like I am reading some languages from Mars...

Really appreciate your help
Leo
Attached Image
Attached File
File Type: mq4 xSuperTrend candles (mtf).mq4   6 KB | 61 downloads
  • Post #31,350
  • Quote
  • Nov 12, 2019 11:22am Nov 12, 2019 11:22am
  •  asrirosely
  • | Joined Aug 2019 | Status: Member | 7 Posts
Quoting cliprs
Disliked
İndicator edit. I want to be warned when the indicator changes color. The sample file is attached. {image} {file}
Ignored
hi, the indicator repaint or not?.i downloaded the file but seems different than yours.what are the setting?
  • Post #31,351
  • Quote
  • Nov 12, 2019 12:33pm Nov 12, 2019 12:33pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 556 Posts
Quoting olwethufx
Disliked
Hi traders and coders, wondering if anyone can heed my request to turn an indicator, into an EA. I am not a coder, but have been dabling about in metaeditor, changing and tinkering, I'm also slowly learning coding on Jim's channel. I have been trading with 75% success using this below attached indi. and believe the success rate can go considerably up, if it were an EA that could execute faster at market. Essentilly the indi has 3 buffers, Red line, Green Line and Yellow MA, but focus is on the green and red. tried to call the indi using iCustom,...
Ignored
Hi
Man,as per my little knowing the ver you posted is renamed of "Nonlag MA" indicator (the same case with buzzer named one too lurking around) and as per experts (Mladen) saying it is even wrong coded,better to try on original and well coded some "nonlag ma" by reliable coders.
look in second picture i applied both with same parameters but with shift 1 (nonlag) other wise they will be hiding/overlap each other

"nonlag ma nrp mtf alerts nmc 2"
This ver supports alerting package
apply pct filter (1.36) for to compare with that of your renamed toy

Attached Image (click to enlarge)
Click to Enlarge

Name: XAUUSDH4.png
Size: 32 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDH1.png
Size: 28 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: p.png
Size: 205 KB
Attached File
File Type: ex4 nonlag ma nrp mtf alerts nmc 2.ex4   42 KB | 77 downloads
Indicator is just a tool. Use it only if it can benefit you.
  • Post #31,352
  • Quote
  • Nov 12, 2019 12:41pm Nov 12, 2019 12:41pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 556 Posts
Quoting lixiaomai007
Disliked
Dear FFs, If I violate this post rules or made someone unhappy, please accept my apologize in advance. So I found this X super trend indicator and it will turn candles red if there is a down trend and turn blue for the up trend (please see the screen shot). I just wondering is it possible to add an arrow sign and alert on it when the candles turns? if add arrow signs is possible, could we make a dashboard for it to monitoring all the pairs.... I am just about starting learn how to program mt4 and still feel like I'm a idiot, all I know right now...
Ignored
Here you go
Mrtools extended ver
Attached Image (click to enlarge)
Click to Enlarge

Name: NZDUSDH1.png
Size: 57 KB
Attached File
File Type: ex4 xSuperTrend-Candles mtf + arrows.ex4   26 KB | 112 downloads
Indicator is just a tool. Use it only if it can benefit you.
  • Post #31,353
  • Quote
  • Nov 12, 2019 12:55pm Nov 12, 2019 12:55pm
  •  olwethufx
  • | Joined Sep 2016 | Status: Member | 8 Posts
Quoting mntiwana
Disliked
{quote} Hi Man,as per my little knowing the ver you posted is renamed of "Nonlag MA" indicator (the same case with buzzer named one too lurking around) and as per experts (Mladen) saying it is even wrong coded,better to try on original and well coded some "nonlag ma" by reliable coders. look in second picture i applied both with same parameters but with shift 1 (nonlag) other wise they will be hiding/overlap each other "nonlag ma nrp mtf alerts nmc 2" This ver supports alerting package apply pct filter (1.36) for to compare with that of your renamed...
Ignored

Hi Mntiwana

Thank you very much for posting the original real indicator, I was unaware there is an original, I guess the site I got the previous indicator from, the person took it and made the code his own. Its a disgusing business in my country. Traders pass off indicators and EA's as part of exclusive trading systems that cost thousands, when these things are available freely online in trading communities. I just tested and compared the one you posted with the settings, very good, few points paint faster than the previous one. So where can I get the EA for it? I was hoping to get an EA with my rules posted above. Should I search (Mladen EA)?

PS, what is the indicator you have on the second window below?
  • Post #31,354
  • Quote
  • Nov 12, 2019 1:25pm Nov 12, 2019 1:25pm
  •  lixiaomai007
  • | Joined Oct 2019 | Status: Member | 8 Posts
Quoting mntiwana
Disliked
{quote} Here you go Mrtools extended ver {image} {file}
Ignored
Thank you soooo much Mntiwana!
  • Post #31,355
  • Quote
  • Nov 12, 2019 1:42pm Nov 12, 2019 1:42pm
  •  nkp9999
  • | Joined Jul 2007 | Status: Member | 47 Posts
Quoting olwethufx
Disliked
Hi traders and coders, wondering if anyone can heed my request to turn an indicator, into an EA. I am not a coder, but have been dabling about in metaeditor, changing and tinkering, I'm also slowly learning coding on Jim's channel. I have been trading with 75% success using this below attached indi. and believe the success rate can go considerably up, if it were an EA that could execute faster at market. Essentilly the indi has 3 buffers, Red line, Green Line and Yellow MA, but focus is on the green and red. tried to call the indi using iCustom,...
Ignored
For me, this indicator is not plotting anything on the screen
  • Post #31,356
  • Quote
  • Nov 12, 2019 2:04pm Nov 12, 2019 2:04pm
  •  olwethufx
  • | Joined Sep 2016 | Status: Member | 8 Posts
Quoting nkp9999
Disliked
{quote} For me, this indicator is not plotting anything on the screen
Ignored
it should work properly. load into the correct indicators folder under mql4 in your mt4 folder. Close MT4 and restart the terminal, it should appear in the indicator window. Anyway, Mntiwana just posted an even more efficient one just below my post, best you use that one. "nonlag ma nrp MTf with alerts mmc"
  • Post #31,357
  • Quote
  • Nov 12, 2019 2:11pm Nov 12, 2019 2:11pm
  •  jameelamadi
  • | New Member | Status: Junior Member | 1 Post
Hi, could you help me with a custom indiactor. i dont know how to code. on tradingview i have to put use the Pin editor. i am with tradingview.

please take previous DAY high, low and close and divide by 3. thank you
  • Post #31,358
  • Quote
  • Nov 12, 2019 2:23pm Nov 12, 2019 2:23pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 556 Posts
Quoting olwethufx
Disliked
{quote} it should work properly. load into the correct indicators folder under mql4 in your mt4 folder. Close MT4 and restart the terminal, it should appear in the indicator window. Anyway, Mntiwana just posted an even more efficient one just below my post, best you use that one. "nonlag ma nrp MTf with alerts mmc"
Ignored
Tip : No needs to off terminal after adding ex4 file within belonging folder,simply refreshing indicators pan by right click.
Indicator is just a tool. Use it only if it can benefit you.
  • Post #31,359
  • Quote
  • Nov 12, 2019 2:24pm Nov 12, 2019 2:24pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 556 Posts
Quoting olwethufx
Disliked
{quote} Hi Mntiwana Thank you very much for posting the original real indicator, I was unaware there is an original, I guess the site I got the previous indicator from, the person took it and made the code his own. Its a disgusing business in my country. Traders pass off indicators and EA's as part of exclusive trading systems that cost thousands, when these things are available freely online in trading communities. I just tested and compared the one you posted with the settings, very good, few points paint faster than the previous one. So where...
Ignored
That is Mladen's "CCI on chart" ver
Indicator is just a tool. Use it only if it can benefit you.
  • Post #31,360
  • Quote
  • Nov 13, 2019 1:57am Nov 13, 2019 1:57am
  •  Shaumeet
  • | Joined Nov 2018 | Status: Member | 49 Posts
Can any Kind Person Make An Indicator on cci?

4 arrows
2 green 2 Red

One Big Red Dot When Cci (Open) 14(Or input, user Defined) Cross Below 180 Level
One Small Dot On Same Cci Cross Below 100

Vice Versa
Big Green dot On same Cci cross - 180
And Small dot On - 100


Here Is Many CCI Indicators Available But Most Of Them Are Cci Weitage.. I need Cci Open

If Anyone can Make please..
And Arrow Come On end Of Candle So it Will be Non repaint..
Attached Image (click to enlarge)
Click to Enlarge

Name: IMG_20191113_122623.jpg
Size: 484 KB
Thread Tools Search this Thread
Show Printable Version Show Printable Version
Email This Thread Email This Thread
Search this Thread:

Advanced Search

  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 15661567Page 156815691570 1587
    • 1 Page 1568 1587
11 traders viewing now, 2 are members:
Watercooler
,
gharti
  • 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 / ©2019