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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

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

Oanda MT4 - Indicators and EAs not showing 1 reply

EAs and indicators relating to moutaki... 22 replies

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

Need help to code EAs for MT4 and MT5 2 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 30,212
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 502503Page 504505506 2213
  • 1 Page 504 2213
  •  
  • Post #10,061
  • Quote
  • Oct 31, 2015 5:10am Oct 31, 2015 5:10am
  •  ddien
  • | Joined Dec 2014 | Status: Member | 83 Posts
hellow all trader here who have a mq4 code this indicator
Attached File
File Type: ex4 BrainTrend2_all_in_one1.ex4   8 KB | 280 downloads
  • Post #10,062
  • Quote
  • Edited at 1:20pm Oct 31, 2015 5:17am | Edited at 1:20pm
  •  ddien
  • | Joined Dec 2014 | Status: Member | 83 Posts
im not backtest yet when market is open soon hope this good to use..but im confidence looked at visual chart demo indicator market mql5 earlier.... but now it is not good to use sorry for my bad posted here
Attached Image (click to enlarge)
Click to Enlarge

Name: gbpusdmicro-h1-trading-point-of-2.png
Size: 34 KB
  • Post #10,063
  • Quote
  • Oct 31, 2015 8:01am Oct 31, 2015 8:01am
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,137 Posts | Online Now
Quoting cja
Disliked
{quote} {file} {image}
Ignored
Great cja it is really excellent job.may many thanks for your time and effort .
Say something meaningful or Silence!!
  • Post #10,064
  • Quote
  • Oct 31, 2015 8:36am Oct 31, 2015 8:36am
  •  KevinSt9
  • | Joined Aug 2015 | Status: Cyborg Scalper | 152 Posts
Quoting redrose
Disliked
Hi Kevin this indicator repaint am i right ? //The below indicator "XB4D", I think is a popular indicator?
Ignored
Hi,

I think so, have not tested it live yet. Did months back but want to give it another go...

Hoping that if the colour of the indicator change it does not change back?
kevinfxtrader blogspot com; 50 PIPS Per Day
  • Post #10,065
  • Quote
  • Oct 31, 2015 9:22am Oct 31, 2015 9:22am
  •  Smfx2015
  • | Joined Oct 2015 | Status: Junior Member | 2 Posts
Dear Expert Coders,

First of all a big thank you for all of you for sharing expert knowledge and ideas to the beginners like me.

I have been using Milestone Expert Advisor V20.5 since couple of weeks and it is very useful and profitable.

I have been testing it on demo and result are very good.

After observing it for quite some time - with my 2 cents knowledge in EA's I can say that it lacks one important element.

TRAILING STOP - Yes, if someone can add the trailing stop code to this EA, I guess this will be stable and profitable Expert Advisor.

So, Please coders with you big heart - please kindly add the trailing stop option and share with the Forex community.

(EA Attached)
Attached File
File Type: mq4 milestone-20.5.mq4   25 KB | 371 downloads
  • Post #10,066
  • Quote
  • Edited at 9:27pm Oct 31, 2015 9:36am | Edited at 9:27pm
  •  Gdi
  • | Membership Revoked | Joined Aug 2015 | 270 Posts
Can someone please help me code this TDI indicator?

I would like the indicator to show the candles on the chart:

Blue Candle(s) when the green line on the TDI is above a certain level
Red Candles(s) when the green line on the TDI is below a certain level.

The user should be able to change the:

Levels OS OB - (80, 20, etc.)
All TDI Inputs (RSI) Don't need all the inputs just as long as I have mq4 file I should be able to change it.
MTF (60,240, etc)

Thank you. If you need more information please let me know. If I can have the mq4 file in case it needs to changed in the future I would really appreciate it. This will help an old man save his dying eyes. Thanks you soo much.
Attached File
File Type: mq4 TDI_mtf+alerts b600+.mq4   20 KB | 209 downloads
  • Post #10,067
  • Quote
  • Oct 31, 2015 5:37pm Oct 31, 2015 5:37pm
  •  fbrand79
  • | Joined Oct 2012 | Status: SwartMamba | 78 Posts
Quoting cyber1
Disliked
{quote} fbrand79- Look at iBarShift() Here is an example from a recent indicator using Bollinger Bands. double UpBand_H1 = iBands(NULL,PERIOD_H1,BandsPeriod,BandsDeviation,0,PRICE_CLOSE,MODE_UPPER,iBarShift(NULL,PERIOD_H1,Time[StartBar])); double DnBand_H1 = iBands(NULL,PERIOD_H1,BandsPeriod,BandsDeviation,0,PRICE_CLOSE,MODE_LOWER,iBarShift(NULL,PERIOD_H1,Time[StartBar]));
Ignored
Thanx for the tip Cyber1 and I have used it as below to be put onto a 5min chart and draw arrows on the following conditions, but it's not working as it should with the previous bar.

Thank you for the help.

Inserted Code
      int shiftM15 = iBarShift(NULL,PERIOD_M15,Time[i]);
      int shiftM15Prev = iBarShift(NULL,PERIOD_M15,Time[i+1]);
      double StocKM15 = iStochastic(NULL,0,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15);
      double StocKM15Prev = iStochastic(NULL,0,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15Prev);
 
       //---Up Arrow
       if(StocKM15 > 20 && StocKM15Prev < 20)        
         upArrow[i]= Low[i]-.0007;
       //---Down Arrow
       if(StocKM15 < 80 && StocKM15Prev > 80)
         downArrow[i]= High[i]+.0007;
  • Post #10,068
  • Quote
  • Edited at 6:06pm Oct 31, 2015 5:54pm | Edited at 6:06pm
  •  GreenCa
  • | Joined Dec 2014 | Status: Member | 97 Posts
Quoting lghr
Disliked
{quote} see your page.
Ignored
Dear LGHR. please i sent you PM about an EA that you did here sometime ago. below is the graph of its performance, kindly respond so that i can share with you how to improve it and eliminate the drawddown completely.. thank you.
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 67 KB
  • Post #10,069
  • Quote
  • Nov 1, 2015 12:32am Nov 1, 2015 12:32am
  •  919gilead
  • Joined Jul 2010 | Status: Great hopes make great men | 1,991 Posts
Quoting cja
Disliked
{quote} {file} {image}
Ignored
Hello CJA,

I have an idea that I was wondering whether we can incorporate into the MA Price Cross NMC, if it is not much work.

I am a currency strength/correlation trader and don't just trade the strong against the weak currencies but the strongest against the weakest currency groups. The MADdash is very good at identifying these groups but the signals are somehow late which is understandable. I have therefore been looking at alternative ways to overcome this challenge when this idea occurred to me.
Attached Image (click to enlarge)
Click to Enlarge

Name: Euro Group - 10302015.gif
Size: 120 KB

If you observe the attached Euro group, you will notice that the cross of the MA occurred within the same TF or last 2 M30 TF except the EJ.

This is the screenshot of the MADdash around the time of the crosses
Attached Image

The MADdash gives good idea of the groups to trade - sell the Yen, USD & Euro groups and buy the CAD, GBP & AUD groups. Look at the charts of the Yen group below and compare with the Euro group above
Attached Image (click to enlarge)
Click to Enlarge

Name: Yen Group - 10302015.gif
Size: 114 KB

There were ONLY 4 crosses around the same time in the Yen group when we got the crosses in the Euro group. The GJ, CHJ and AJ cross came much more earlier and best group would have been the Euro group against the CAD and GBP groups.


IMHO the idea resolves 2 problems - (1) it points to the current best groups and (2) will improve timing of entry by having only the current crosses within the last TF specified by user, but may not entirely eliminate late entry.

I therefore want all signal arrows to disappear after a user selected TF (minutes/hours) not including the current time. I will use the attached ECA chart to illustrate my point
Attached Image (click to enlarge)
Click to Enlarge

Name: ECA - 10302015.gif
Size: 63 KB

I am on an M5 TF with the H1 TF candles imposed on the chart. I want the dashboard to ONLY show the signal arrow within this current time and the last hour. Therefore when I look at the dashboard, I will ONLY see fresh crosses and this way if a currency group is getting weak or strong, it will probably be the only fresh signal arrows on the dashboard.

Thank you for considering my request.

Shalom

George
Low Risk Low Stress High Reward High Probability Trades
  • Post #10,070
  • Quote
  • Nov 1, 2015 2:28am Nov 1, 2015 2:28am
  •  Falco.
  • | Joined Oct 2015 | Status: I'm not surprised motherfuckers | 20 Posts
Hello all
Is there way to reverse chart (upside down)? I need completely reverted chart so top will be on bottom and vice-versa.
all the best
  • Post #10,071
  • Quote
  • Edited at 6:29am Nov 1, 2015 5:16am | Edited at 6:29am
  •  archtop
  • | Joined Mar 2014 | Status: Member | 39 Posts
howdy,
wonderin if anybody can add touch alert to this, popup, sound once per candle on touch of center and outer lines(from either direction), and what pair pops alert. i tried to adapt a touch alert from another indi but was not able to make it work right ( not on this version)

thanks for all the help
peace
Attached File
File Type: mq4 uLinRegrBuf.mq4   3 KB | 251 downloads
  • Post #10,072
  • Quote
  • Nov 1, 2015 5:25am Nov 1, 2015 5:25am
  •  alifari
  • Joined Mar 2009 | Status: Member | 1,247 Posts
I would like to request some modification to attached indicator "Quick ZigZag Indi Version" posted by Hayseed.

The current version show combined average zig zag length based of a particular time frame on any desired zig zag setting such as 12,5,3 etc.

Modification Required

1) Instead of taking zig zag length from beginning, I want an option to see average zig zag length of last 10 swings only. So I need an additional parameter to see # of swings

2) Currently average zig zag length is showing combined average length of both up and down swings, but I want an option to only see average length of only last 10 up swing. So I need additional parameter to see 1) up swing 2) down swing.

Currently I am doing this average up and down swing calculation manually by entering swing length in Excel by using Zigzag with value bars indicator and as such I would appreciate if any coder could help with this modification.

Thanks in advance.
Attached Images (click to enlarge)
Click to Enlarge

Name: swing indi request.png
Size: 46 KB Click to Enlarge

Name: swing indi request-2.png
Size: 76 KB
Attached Files
File Type: mq4 quick zigzag indi version.mq4   5 KB | 242 downloads
File Type: ex4 quick zigzag indi version.ex4   11 KB | 196 downloads
File Type: mq4 ZigZagWithValue_Bars.mq4   8 KB | 238 downloads
File Type: ex4 ZigZagWithValue_Bars.ex4   19 KB | 170 downloads
Fall in love with the process and the results will come
  • Post #10,073
  • Quote
  • Nov 1, 2015 6:39am Nov 1, 2015 6:39am
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting fbrand79
Disliked
{quote} Thanx for the tip Cyber1 and I have used it as below to be put onto a 5min chart and draw arrows on the following conditions, but it's not working as it should with the previous bar. Thank you for the help. int shiftM15 = iBarShift(NULL,PERIOD_M15,Time); int shiftM15Prev = iBarShift(NULL,PERIOD_M15,Time[i+1]); double StocKM15 = iStochastic(NULL,0,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15); double StocKM15Prev = iStochastic(NULL,0,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15Prev); //---Up Arrow if(StocKM15...
Ignored
fbrand79-
Make the following changes and it should work.

int shiftM15 = iBarShift(NULL,PERIOD_M15,Time[i]);
int shiftM15Prev = iBarShift(NULL,PERIOD_M15,Time[i])+1;

double StocKM15 = iStochastic(NULL,PERIOD_M15,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15);
double StocKM15Prev = iStochastic(NULL,PERIOD_M15,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15Prev);

if(StocKM15 > 20 && StocKM15Prev < 20) upArrow[i]= Low[i]-.0007;
if(StocKM15 < 80 && StocKM15Prev > 80) downArrow[i]= High[i]+.0007;
  • Post #10,074
  • Quote
  • Nov 1, 2015 6:43am Nov 1, 2015 6:43am
  •  archishard
  • | Joined Sep 2015 | Status: Member | 120 Posts
Quoting Metatrader
Disliked
Hey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. Andi
Ignored
I metatrader,
I have a commercial indicator, it looks very good to me with win ratio close to 95%, depending on timeframe!

Would you like to give a go to create an EA based on that indicator?
Is a commercial version so I suppose we can do in private chat and then give back your EA version to the forum.

Best,
archishard
  • Post #10,075
  • Quote
  • Nov 1, 2015 6:45am Nov 1, 2015 6:45am
  •  Smfx2015
  • | Joined Oct 2015 | Status: Junior Member | 2 Posts
Quoting Smfx2015
Disliked
Dear Expert Coders, First of all a big thank you for all of you for sharing expert knowledge and ideas to the beginners like me. I have been using Milestone Expert Advisor V20.5 since couple of weeks and it is very useful and profitable. I have been testing it on demo and result are very good. After observing it for quite some time - with my 2 cents knowledge in EA's I can say that it lacks one important element. TRAILING STOP - Yes, if someone can add the trailing stop code to this EA, I guess this will be stable and profitable Expert Advisor....
Ignored
Hi Guys, If anyone can look into this...that would be a very big help.

Just need a trailing stop functionality added to this EA.
  • Post #10,076
  • Quote
  • Edited at 11:24am Nov 1, 2015 6:53am | Edited at 11:24am
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting archishard
Disliked
{quote} I metatrader, I have a commercial indicator, it looks very good to me with win ratio close to 95%, depending on timeframe! Would you like to give a go to create an EA based on that indicator? Is a commercial version so I suppose we can do in private chat and then give back your EA version to the forum. Best, archishard
Ignored
archishard-
http://www.forexfactory.com/metatrader
He's been AWOL since 2009

I seriously doubt that the indicator gives you a 95% win rate if it does I don't think you'll have a problem finding someone to code an EA for it.
  • Post #10,077
  • Quote
  • Nov 1, 2015 7:51am Nov 1, 2015 7:51am
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,137 Posts | Online Now
Quoting classy
Disliked
{quote} great cja excellent job is it possible to just show(on/off) pivot line only color....no text...clear ..not clutter... i attached ..img i want to see only r1,r2,r3..s1..s2..s3 (with price lebel like img..)plus only pivot color ..so that i can see PA on pivot level and SAR .area ..candle clearly b/c i see..found day candle ..pin/hammer/engulf/morning star/even star ..etc that area rejections bounce and to see pivot on day chart is very important..IMHO {image}
Ignored
i did it manually ..please all great coder check it if you think it is profitable/feasible then please give some precious time.. effort to make an EA .i attached pic to better understand .given pic all gold horizontal line is pivot line ..i want Ea open order if following conditions fulfill
FOR short trade open conditions :
above pivot after hh> hl> hh(higher high)..UPMOVE..... then price cross below and create more then 1 lh(lower high) like 2/3 then short open .sl will be last hh
FOR long trade open conditions :
just opposite to open long trade ...by this way we can catch big move HIGH ROI b/c sl is very small tp /closed trade opposite conditions...

i back test manually and see it is profitable if you like then check please .IF YOU HAVE ANY QUESTION PLEASE ASK ME . i shre my idea you can add your thought.perceptions..idea...
Attached Image (click to enlarge)
Click to Enlarge

Name: hh lhlhlh short oposite long.PNG
Size: 139 KB
Say something meaningful or Silence!!
  • Post #10,078
  • Quote
  • Nov 1, 2015 7:56am Nov 1, 2015 7:56am
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,137 Posts | Online Now
one more example ..i can give you more....i spent hell lot of time ..day/night....now i try to catch manually but miss..... lot
Attached Image (click to enlarge)
Click to Enlarge

Name: gusd ex.PNG
Size: 150 KB
Say something meaningful or Silence!!
  • Post #10,079
  • Quote
  • Edited at 8:20am Nov 1, 2015 7:57am | Edited at 8:20am
  •  fbrand79
  • | Joined Oct 2012 | Status: SwartMamba | 78 Posts
Quoting cyber1
Disliked
{quote} fbrand79- Make the following changes and it should work. int shiftM15 = iBarShift(NULL,PERIOD_M15,Time[i]); int shiftM15Prev = iBarShift(NULL,PERIOD_M15,Time[i])+1; double StocKM15 = iStochastic(NULL,PERIOD_M15,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15); double StocKM15Prev = iStochastic(NULL,PERIOD_M15,Kperiod,Dperiod,slowing,Method,priceField,MODE_MAIN,shiftM15Prev); if(StocKM15 > 20 && StocKM15Prev < 20) upArrow[i]= Low[i]-.0007; if(StocKM15 < 80 && StocKM15Prev > 80) downArrow[i]= High[i]+.0007;
Ignored
Thank you Cyber1, worx like a charm.

Just wondering why +1 outside the []? I didn't find much on iBarShift.

Also how will I specify Close[] of the HTF in the current TF as an added filter?

Did the JimDandy mql4 course so only got my toes wet, any other resources you can point me to?
  • Post #10,080
  • Quote
  • Nov 1, 2015 8:01am Nov 1, 2015 8:01am
  •  fxrambo
  • | Joined Sep 2009 | Status: Member | 320 Posts
Quoting wolfsch
Disliked
fellow traders I found this nice &quot;Ind Magic&quot; which helps me to remain very close to the actual trend. Now I would like to get rid of the red and green vertical lines which would be done inside the code. Please help me with that! Thanks a lot. I add a screenshot and the mq4. {image} {file}
Ignored
hi do you mind sharing the channels in your main chart
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 502503Page 504505506 2213
    • 1 Page 504 2213
15 traders viewing now, 5 are members:
satishmajhwa
,
ebisevac
,
13francisco
,
erex
,
Invisible
  • 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 / ©2021