• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 8:26pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:26pm
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 36 replies

I will code your pivot EAs for no charge 18 replies

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
  • 35,903
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 919920Page 921922923 2616
  • 1 Page 921 2616
  •  
  • Post #18,401
  • Quote
  • Mar 30, 2017 1:45am Mar 30, 2017 1:45am
  •  siraj74
  • | Joined Jul 2014 | Status: Member | 92 Posts
Dear Coders,

I have attached the mq4 file. Can somebody modify the indicator so that when I apply to chart it display the UP Arrow count and DN arrow count

Thanks and Regards
Attached File
File Type: mq4 MACD CROSS.mq4   4 KB | 189 downloads
 
 
  • Post #18,402
  • Quote
  • Mar 30, 2017 2:06am Mar 30, 2017 2:06am
  •  goodways100
  • Joined Dec 2013 | Status: Member | 614 Posts
Following your work. Thanks and
Regards
 
 
  • Post #18,403
  • Quote
  • Mar 30, 2017 2:23am Mar 30, 2017 2:23am
  •  kingkongking
  • | Joined Jul 2016 | Status: Member | 40 Posts
Quoting Phylo
Disliked
{quote} PM me.
Ignored
I have sent you PM, Sir.
 
 
  • Post #18,404
  • Quote
  • Mar 30, 2017 3:35am Mar 30, 2017 3:35am
  •  erafizz
  • | Joined Mar 2017 | Status: Junior Member | 4 Posts
Any One Here ?
hello everyone , was trying finding on google but no success.
i want Pivot Point EA , there are many ea but not Pivot ea ,
Rules:
1, Long at support
2, Short at resistance
with TP SL trader can put the tp n sl
besically pendig orders at 1st support and 1st resistance.
3, switch for 2nd and 3rd s/r if trader want order he/she can change false true for 2nd 3rd also.
Erafizz Int
 
 
  • Post #18,405
  • Quote
  • Mar 30, 2017 6:00am Mar 30, 2017 6:00am
  •  kev269
  • | Joined Feb 2017 | Status: Member | 6 Posts
Hi Everyone,

I am looking for these indicators - TTM Wave A, B and C, but I only have the code for TradingView.
http://www.tradethemarkets.com/publi...r-12-waves.cfm

Is it possible for you to convert these to MT4? I would like these as 3 indicators - one for Wave A, B and C. I have posted the code below.

Hopefully it is not too difficult to convert these, but please let me know if it is a problem.

Many thanks,


// Created by UCSGEARS on 8/30/2014
// Updated - 03/22/2014
study(title="UCS_TTM_Wave A & B & C", shorttitle="WAVE-A/B/C", precision = 2)
usewa = input(true, title = "Wave A", type=bool)
usewb = input(true, title = "Wave B", type=bool)
usewc = input(true, title = "Wave C", type=bool)

// WAVE CALC

// Wave A
fastMA1 = usewa ? ema(close, 8) : na
slowMA1 = usewa ? ema(close, 34) : na
macd1 = usewa ? fastMA1 - slowMA1 : na
signal1 = usewa ? ema(macd1, 34) : na
hist1 = usewa ? macd1 - signal1 : na
fastMA2 = usewa ? ema(close, 8) : na
slowMA2 = usewa ? ema(close, 55) : na
macd2 = usewa ? fastMA2 - slowMA2 : na
signal2 = usewa ? ema(macd2, 55) : na
hist2 = usewa ? macd2 - signal2 : na

// Wave B
fastMA3 = usewb ? ema(close, 8) : na
slowMA3 = usewb ? ema(close, 89) : na
macd3 = usewb ? fastMA3 - slowMA3 : na
signal3 = usewb ? ema(macd3, 89) : na
hist3 = usewb ? macd3 - signal3 : na
fastMA4 = usewb ? ema(close, 8) : na
slowMA4 = usewb ? ema(close, 144) : na
macd4 = usewb ? fastMA4 - slowMA4 : na
signal4 = usewb ? ema(macd4, 144) : na
hist4 = usewb ? macd4 - signal4 : na

// Wave C
fastMA5 = usewc ? ema(close, 8) : na
slowMA5 = usewc ? ema(close, 233) : na
macd5 = usewc ? fastMA5 - slowMA5 : na
signal5 = usewc ? ema(macd5, 233) : na
hist5 = usewc ? macd5 - signal5 : na
fastMA6 = usewc ? ema(close, 8) : na
slowMA6 = usewc ? ema(close, 377) : na
macd6 = usewc ? fastMA6 - slowMA6 : na

// PLOTs
plot(macd6, color=#FF0000, style=histogram, title="Wave C1", linewidth=3)
plot(hist5, color=#FF8C00, style=histogram, title="Wave C2", linewidth=3)
plot(hist4, color=#FF00FF, style=histogram, title="Wave B1", linewidth=3)
plot(hist3, color=#0000FF, style=histogram, title="Wave B2", linewidth=3)
plot(hist2, color=#008000, style=histogram, title="Wave A1", linewidth=3)
plot(hist1, color=#DAA520, style=histogram, title="Wave A2", linewidth=3)
hline(0, color=black, title = "Zero Line", linewidth = 2, linestyle = solid)
 
 
  • Post #18,406
  • Quote
  • Mar 30, 2017 6:56am Mar 30, 2017 6:56am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,725 Posts
[quote=kev269;9722050]Hi Everyone, I am looking for these indicators - TTM Wave A, B and C, but I only have the code for TradingView. http://www.tradethemarkets.com/publi...r-12-waves.cfm Is it possible for you to convert these to MT4? I would like these as 3 indicators - one for Wave A, B and C. I have posted the code below.............

See if this meets objectives - https://www.mql5.com/en/forum/180079 or (MT5) https://www.mql5.com/en/code/1682
 
 
  • Post #18,407
  • Quote
  • Mar 30, 2017 7:20am Mar 30, 2017 7:20am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,725 Posts
Quoting Drew123
Disliked
Hello Can I ask our talented coders to have a look at the attached indicator and see if a push alert can be added please. Thanks Drew {file}
Ignored
Push Notification help - https://www.metatrader4.com/en/tradi..._notifications
Attached File
File Type: mq4 MAXSignal - mod - 1.mq4   4 KB | 312 downloads
 
1
  • Post #18,408
  • Quote
  • Mar 30, 2017 7:46am Mar 30, 2017 7:46am
  •  kev269
  • | Joined Feb 2017 | Status: Member | 6 Posts
[quote=Phylo;9722183]
Quoting kev269
Disliked
Hi Everyone, I am looking for these indicators - TTM Wave A, B and C, but I only have the code for TradingView. http://www.tradethemarkets.com/publi...r-12-waves.cfm Is it possible for you to convert these to MT4? I would like these as 3 indicators - one for Wave A, B and C. I have posted the code below............. See if this meets objectives - https://www.mql5.com/en/forum/180079 or (MT5) https://www.mql5.com/en/code/1682
Ignored
This is great thanks , but I use MT4 - is there an MT4 version? Thanks.
 
 
  • Post #18,409
  • Quote
  • Mar 30, 2017 9:21am Mar 30, 2017 9:21am
  •  Drew123
  • | Joined Dec 2012 | Status: Member | 11 Posts
Quoting Phylo
Disliked
{quote} Push Notification help - https://www.metatrader4.com/en/tradi..._notifications {file}
Ignored

Thank you Phylo
 
 
  • Post #18,410
  • Quote
  • Edited at 9:55am Mar 30, 2017 9:27am | Edited at 9:55am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,725 Posts
[quote=kev269;9722347]
Quoting Phylo
Disliked
{quote} This is great thanks , but I use MT4 - is there an MT4 version? Thanks.
Ignored
Ah! You are after ttm squeeze not ttm scalper. Apparently ttm squeeze is synonymous with BB Squeeze. Besides here (MT4) - https://www.mql5.com/en/forum/175337 & Here - https://www.forex-station.com/post/b...trail=36search .

Search 'MQL4 BB Squeeze' and 'MT4 BB Squeeze'.
 
 
  • Post #18,411
  • Quote
  • Mar 30, 2017 10:33am Mar 30, 2017 10:33am
  •  Giannigr
  • | Joined Feb 2013 | Status: VIP | 217 Posts
Hello
The mt4 trendline measured the lenght in pips. Exist such a trendline what measured the lenght in milimeter?
 
 
  • Post #18,412
  • Quote
  • Mar 30, 2017 11:03am Mar 30, 2017 11:03am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,725 Posts
[quote=kev269;9722347]
Quoting Phylo
Disliked
{quote} This is great thanks , but I use MT4 - is there an MT4 version? Thanks.
Ignored
https://www.mql5.com/en/forum/175337/page10
Attached Image (click to enlarge)
Click to Enlarge

Name: TTM Wave.PNG
Size: 192 KB
 
 
  • Post #18,413
  • Quote
  • Mar 30, 2017 11:16am Mar 30, 2017 11:16am
  •  mrbioptions
  • | Joined May 2016 | Status: Member | 36 Posts
Quoting siraj74
Disliked
Dear Coders, I have attached the mq4 file. Can somebody modify the indicator so that when I apply to chart it display the UP Arrow count and DN arrow count Thanks and Regards {file}
Ignored
this will give the arrows you just need to input the settings to match the lines
Attached File
File Type: ex4 MACD Crossover Alert.ex4   4 KB | 187 downloads
 
 
  • Post #18,414
  • Quote
  • Mar 30, 2017 2:42pm Mar 30, 2017 2:42pm
  •  terminator12
  • Joined Dec 2012 | Status: Member | 835 Posts
Attached File
File Type: mq4 cm_SL_Mouse.mq4   3 KB | 190 downloads
Attached File
File Type: mq4 cm_SL_Mouse.mq4   3 KB | 190 downloads

coders , please see why it not working , thanks
Attached File
File Type: mq4 cm_TP_Mouse.mq4   3 KB | 193 downloads
 
 
  • Post #18,415
  • Quote
  • Mar 30, 2017 3:57pm Mar 30, 2017 3:57pm
  •  GreenTrader1
  • | Joined Mar 2017 | Status: Junior Member | 1 Post
Hello
Moving average intersection is simplei
Most simply 5 MA / 21 MA Crossover Buy / Sell Method, I Need EA.
Thank you .
 
 
  • Post #18,416
  • Quote
  • Mar 30, 2017 4:03pm Mar 30, 2017 4:03pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,836 Posts
Quoting GreenTrader1
Disliked
Hello Moving average intersection is simplei Most simply 5 MA / 21 MA Crossover Buy / Sell Method, I Need EA. Thank you .
Ignored
MA EA's are just about the most common EA around, do a search on this Forum or goggle it
Trade what you see not what you hope
 
 
  • Post #18,417
  • Quote
  • Mar 30, 2017 4:18pm Mar 30, 2017 4:18pm
  •  sniper89
  • | Joined Jan 2017 | Status: Junior Member | 1 Post
Hi can someone help me make an EA I have a superb reentry strategy works on any timeframe it's based on pivot emas 17ma hlc3, 34ema Hlc3 and 55ema HLC3 I will explain further if anyone is willing to help strategy is simple but powerful pls reply via my email....moeketsiseleso(at)gmail (dot)com
 
 
  • Post #18,418
  • Quote
  • Mar 30, 2017 5:18pm Mar 30, 2017 5:18pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,836 Posts
Quoting terminator12
Disliked
{file}{file} coders , please see why it not working , thanks {file}
Ignored
I have tested both scripts and have found no issues, I think you may be trying to place SL and TP too close to the trade price, some Brokers have no distance limits on their Demo accounts but do have limits on their Live accounts also when large news items are approaching often Brokers have been known extend those limits. Check the experts/journal tabs at the bottom of your MT4 platform or check the scripts comments to see if there is a problem and what the problem is. error 130 is trying to set a SL or TP under the broker ( MODE_STOPLEVEL ) limit.
Attached Image
Trade what you see not what you hope
 
 
  • Post #18,419
  • Quote
  • Mar 30, 2017 5:30pm Mar 30, 2017 5:30pm
  •  sonnyhs
  • | Joined Sep 2010 | Status: Member | 14 Posts
Dear Sir,

Colud you help me to create EA for Close Position base on CCI
Here the Condition :
CCI Period =16
CCI Price = 5(Typical)
crossdown line for close buy = 100
crossup line for close sell =-100

thanks alot for your kind help sir
Trending is the most important thing to make profit
 
 
  • Post #18,420
  • Quote
  • Mar 31, 2017 1:00am Mar 31, 2017 1:00am
  •  bipfx37
  • | Joined Aug 2014 | Status: Member | 50 Posts
Dear cja Sir, I know you are a very busy person. I beg your attention in this case that this is my own coded indicator which shows trend's strength using percentage. I have succeeded to make it but it calculates wrong data sometimes. Please do something for me by going through my codes. I am awaiting your kind reply.
Attached Images (click to enlarge)
Click to Enlarge

Name: Right Data.JPG
Size: 93 KB Click to Enlarge

Name: Wrong Data.JPG
Size: 108 KB
Attached File
File Type: mq4 Bip Price Action for SupRes n TrendLine_V2.mq4   15 KB | 276 downloads
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 919920Page 921922923 2616
    • 1 Page 921 2616
9 traders viewing now, 2 are members:
Glen0ze
,
mgt1972
  • More
Top of Page
Forex Factory Blog Updated: Alerting All Members
  • 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 / ©2022