• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 11:30am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 11:30am
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 516517Page 518519520 2213
  • 1 Page 518 2213
  •  
  • Post #10,341
  • Quote
  • Nov 14, 2015 11:51pm Nov 14, 2015 11:51pm
  •  fxrambo
  • | Joined Sep 2009 | Status: Member | 320 Posts
hi all
anyone knows a mtf barros swing indicator that works in the latest build of mt4
  • Post #10,342
  • Quote
  • Nov 15, 2015 3:36am Nov 15, 2015 3:36am
  •  siraj74
  • | Joined Jul 2014 | Status: Member | 92 Posts
Hello Friends, can somebody change the time frame of this Auto Pivot indicator, this indicator draw pivot levels in M30, H1, H4, D1 I need your help to convert this indicator into M1, M5,15,M30
Attached File
File Type: mq4 PivotCustom_4TimeFrames.mq4   45 KB | 219 downloads
  • Post #10,343
  • Quote
  • Nov 15, 2015 8:07am Nov 15, 2015 8:07am
  •  KayStreet
  • | Joined Mar 2014 | Status: Member | 181 Posts
Hello Code minds!
Here we go;
Someone check the attached image and help me code this script.
__
Simple explanationFOR A LONG;
After a swing low, and as an uptrend is resuming, i open a long position.
The script should automatically set an SL (Stop Loss) of 'x'pips below the swing low (in this case, 'x' pips below the previous red candle), while risking 'n%' of my account balance.
The script should at the same time set the TP (Take Profit) to 'm' times the risk. In this case risk is the number of pips in between the entry price and the stop loss price.
___
Invert the explanation in forex terms_FOR A SHORT POSITION;
___
This is going to help me execute my strategy faster and easier.
It's a complete strategy that i intend to create an EA for step by step when cleaning is finished, and continued profitability is maintained.
___
Someone help me do this.
Attached Image
L.L.L.T
  • Post #10,344
  • Quote
  • Nov 15, 2015 10:09am Nov 15, 2015 10:09am
  •  archishard
  • | Joined Sep 2015 | Status: Member | 120 Posts
Quoting archishard
Disliked
Would anybody who can code make an EA based non TRENDSIGNAL V2? {file}
Ignored
UP
  • Post #10,345
  • Quote
  • Nov 15, 2015 10:30am Nov 15, 2015 10:30am
  •  Bernhard
  • | Commercial Member | Joined Aug 2013 | 2,807 Posts
Quoting archishard
Disliked
{quote} UP
Ignored
did you trade it already successful? It seems the signal is printed backwards 2 or more candles
Scan all 28 Forex pairs with ONE chart... Currency Strength28 Indicators
  • Post #10,346
  • Quote
  • Nov 15, 2015 11:25am Nov 15, 2015 11:25am
  •  archishard
  • | Joined Sep 2015 | Status: Member | 120 Posts
Quoting Bernhard
Disliked
{quote} did you trade it already successful? It seems the signal is printed backwards 2 or more candles
Ignored
It does repaint but the trade should be placed at the consecutive candle opening
  • Post #10,347
  • Quote
  • Nov 15, 2015 11:40am Nov 15, 2015 11:40am
  •  Pipstubborn3
  • | Joined Nov 2015 | Status: Junior Member | 1 Post
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
Hi there,
Can you please code a MTF Stochastic with sound alert and box alert.The different TF should be customize as well as the inputs for K,D, Slow, etc.

Thanks in advance for your help,
Pipstubborn
  • Post #10,348
  • Quote
  • Nov 15, 2015 12:37pm Nov 15, 2015 12:37pm
  •  johannnes
  • | Joined Oct 2007 | Status: no title | 31 Posts
Hi dear coders...

could some of you experienced Coders code this binary comodo indi with a sound signal as soon as the arrow appears?

Many, many thanks in advance ... you are doing a great job ! Just an amazing offer of you !


johannnes
Attached File
File Type: mq4 BinaryComodo.mq4   3 KB | 264 downloads
  • Post #10,349
  • Quote
  • Nov 15, 2015 1:49pm Nov 15, 2015 1:49pm
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting fbrand79
Disliked
{quote} cyber1 Thanx for the help, it works now. I see you changed the following from int counted_bars=IndicatorCounted(); int limit =Bars-counted_bars-1; for(int i = 0;i<limit;i++){ to the new int counted_bars=0; if(counted_bars>0) counted_bars--; int limit=Bars-counted_bars-1; Comment(limit); for(int i = 0;i<limit;i++){ The only thing I'm really clear about is the Comment and the "for" to increment, but the rest ..... What I understand is you define counted_bars to 0, but why not IndicatorCounted()? In the next line do you use "counted_bars--"...
Ignored
fbrand79-
http://forum.mql4.com/19872
https://www.google.com/search?as_q=%...F-8&gws_rd=ssl

Quote
Disliked
Would you mind explaining this to me as this section in code is a part I'm not to clued up about, (well most of the stuff as I'm still learning ), or if you can give me some keywords to search for, cause I'm not sure where to look for it. I've also just used what is in the templates. I have a few indies I need to call but some start with int=0 and others int=1, is not just gonna be better to make all start with 1, at least then you know it's not repainting also?
Most repainting indicators will not repaint past the open candle when its closed the line stays as plotted. For example, anything TMA will repaint long after the current candle has closed.
In this case the only difference is i=1 will not plot the current open candle. To see this put both indicators on the chart and set one to 35 period.
  • Post #10,350
  • Quote
  • Nov 15, 2015 1:56pm Nov 15, 2015 1:56pm
  •  spidertwon
  • | Joined Aug 2007 | Status: Member | 23 Posts
guys if i put forex ea to binary option chart from mt4 does it will work

and if not can i find some help to make it work plz?
  • Post #10,351
  • Quote
  • Nov 16, 2015 1:57am Nov 16, 2015 1:57am
  •  mtbb
  • | Joined Apr 2015 | Status: Member | 90 Posts
just hoping for a quick adjust... Im using this strength meter and as you can see in the pic -- the two boxers are overlapping a bit and the box on the right isnt big enough to show the readings... I looked in the mgl file but -- ummmmmm ... So was hoping someone in here could help out.. thanks in advance..
Attached Image
Attached File
File Type: mq4 ForexProfitSupreme Meter_Robinho_121.mq4   40 KB | 248 downloads
  • Post #10,352
  • Quote
  • Nov 16, 2015 2:09am Nov 16, 2015 2:09am
  •  totowah
  • | Joined Jan 2013 | Status: Tidal Trader | 60 Posts
Quoting mtbb
Disliked
just hoping for a quick adjust... Im using this strength meter and as you can see in the pic -- the two boxers are overlapping a bit and the box on the right isnt big enough to show the readings... I looked in the mgl file but -- ummmmmm ... So was hoping someone in here could help out.. thanks in advance.. {image} {file}
Ignored
Hi mtbb,

Try this one .. it should work better :
Attached Files
File Type: ex4 ForexProfitSupreme Meter.ex4   98 KB | 315 downloads
File Type: mq4 ForexProfitSupreme Meter.mq4   40 KB | 359 downloads
  • Post #10,353
  • Quote
  • Nov 16, 2015 2:25am Nov 16, 2015 2:25am
  •  fbrand79
  • | Joined Oct 2012 | Status: SwartMamba | 78 Posts
Quoting cyber1
Disliked
{quote} fbrand79- http://forum.mql4.com/19872 https://www.google.com/search?as_q=%...F-8&gws_rd=ssl {quote} Most repainting indicators will not repaint past the open candle when its closed the line stays as plotted. For example, anything TMA will repaint long after the current candle has closed. In this case the only difference is i=1 will not plot the current open candle. To see this put both indicators on the chart and set one to 35 period.
Ignored
cyber1

Thanx for the info, will go tru it.
  • Post #10,354
  • Quote
  • Nov 16, 2015 2:26am Nov 16, 2015 2:26am
  •  mtbb
  • | Joined Apr 2015 | Status: Member | 90 Posts
thanks totowah... but nope.. same problems.. hoping someone knows how to read code and is able to go in and make the box bigger or move the box on the right over and open it up a bit... something like that..
  • Post #10,355
  • Quote
  • Edited at 1:52pm Nov 16, 2015 2:52am | Edited at 1:52pm
  •  fbrand79
  • | Joined Oct 2012 | Status: SwartMamba | 78 Posts
I need to add an arrow and alert when price breaches an MA from above, but it should repaint as when the price does not close below the MA to disappear again.

I have it that it draws the arrow and alert for candle 0 when it breaches, but the alert goes of for the whole time the bar is open.

How can I make it to only alert just when the arrow is drawn, and not with every tick.

I've tried the following.

Inserted Code
if(i==1 && SoundAlert)Alert(_Symbol, _Period,"  Sell Alert");
 
or
 
if(i==0 && SoundAlert)Alert(_Symbol, _Period,"  Sell Alert");
 
....
 
i = 0 in the for loop

but keeps alerting with every tick.

thanx
  • Post #10,356
  • Quote
  • Nov 16, 2015 3:48am Nov 16, 2015 3:48am
  •  arkan1976
  • | Joined Sep 2009 | Status: Member | 397 Posts
Hello all, plesase i need help to modify an EA.
The attached EA is an EA is moving averages buy - sell when there is a crossing moving averages, but when you open a trade no longer open another until the first has closed . Someone could modify the EA so that each time there is a crossing open a trade , regardless of whether there is an open and trade ?
Thank you .
Attached File
File Type: mq4 2ma crossover EA.mq4   5 KB | 201 downloads
  • Post #10,357
  • Quote
  • Nov 16, 2015 6:16am Nov 16, 2015 6:16am
  •  siraj74
  • | Joined Jul 2014 | Status: Member | 92 Posts
If you guys have some time, can you have a look of this post http://www.forexfactory.com/showthre...38#post8592538
  • Post #10,358
  • Quote
  • Nov 16, 2015 6:57am Nov 16, 2015 6:57am
  •  marijus
  • | Joined Feb 2012 | Status: Member | 30 Posts
hello can somebody code expert buy than arrow appears and sell than sell appears on close please~?
Attached File
File Type: mq4 ARROW Diamond Rsi.mq4   4 KB | 361 downloads
  • Post #10,359
  • Quote
  • Nov 16, 2015 11:32am Nov 16, 2015 11:32am
  •  Senan7
  • | Joined Mar 2014 | Status: Member | 92 Posts | Online Now
Hey Marijus,

This Arrow Diamond RSI how good is it? What timeframe do you use it? Thanks Senan
  • Post #10,360
  • Quote
  • Edited at 12:54pm Nov 16, 2015 12:08pm | Edited at 12:54pm
  •  Shabs19
  • Joined Aug 2006 | Status: Member | 2,460 Posts
I need a pop-up alert message for this indicator when Green or Red Arrow is fired on close of bar.

Currency pair, timeframe, alert time & alert sound.

Many thanks.

Attached File
File Type: mq4 Three_Bar_Reversal_org.mq4   4 KB | 277 downloads
To Earn you must Learn
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 516517Page 518519520 2213
    • 1 Page 518 2213
12 traders viewing now, 2 are members:
Ylts
,
13francisco
  • 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