• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 5:22pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 5:22pm
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 29082909Page 291029112912 2983
  • 1 Page 2910 2983
  •  
  • Post #58,181
  • Quote
  • Jan 22, 2023 2:03pm Jan 22, 2023 2:03pm
  •  cubes
  • | Joined Oct 2017 | Status: Junior Member | 4 Posts
Indicator wont display used AI to fix outdate code. simple hieken ash indy. i don't know how to code

#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 LimeGreen
#property indicator_width1 1
#property indicator_color2 C'40,65,140'
#property indicator_width2 1
#property indicator_color3 C'220,155,220'
#property indicator_width3 8
#property indicator_color4 LimeGreen
#property indicator_width4 8
extern int MA_Method = 1;
extern int MA_Period = 20;
extern int MA_Method2 = 1;
extern int MA_Period2 = 1;
extern bool POP_UP_Box_Alert = true;
extern bool Sound_Alert = true;
double g_ibuf_100[];
double g_ibuf_104[];
double g_ibuf_108[];
double g_ibuf_112[];
double g_ibuf_116[];
double g_ibuf_120[];
double g_ibuf_124[];
double g_ibuf_128[];
int gi_132 = 0;
string prior_text = "";
int init() {
IndicatorBuffers(8);
SetIndexStyle(0, DRAW_NONE);
SetIndexBuffer(0, g_ibuf_100);
SetIndexStyle(1, DRAW_NONE);
SetIndexBuffer(1, g_ibuf_104);
SetIndexStyle(2, DRAW_HISTOGRAM);
SetIndexBuffer(2, g_ibuf_108);
SetIndexStyle(3, DRAW_HISTOGRAM);
SetIndexBuffer(3, g_ibuf_112);
SetIndexDrawBegin(0, 5);
SetIndexBuffer(4, g_ibuf_116);
SetIndexBuffer(5, g_ibuf_120);
SetIndexBuffer(6, g_ibuf_124);
SetIndexBuffer(7, g_ibuf_128);
return (0);
}
int deinit() {
return (0);
}
int start() {
double l_ima_0;
double l_ima_8;
double l_ima_16;
double l_ima_24;
double ld_32;
double ld_40;
double ld_48;
double ld_56;
if (Bars <= 10) return (0);
gi_132 = IndicatorCounted();
if (gi_132 < 0) return (-1);
if (gi_132 > 0) gi_132--;
for (int li_64 = Bars - gi_132 - 1; li_64 >= 0; li_64--) {
l_ima_0 = iMA(NULL, 0, MA_Period, 0, MA_Method, PRICE_CLOSE, li_64);
l_ima_8 = iMA(NULL, 0, MA_Period, 0, MA_Method, PRICE_LOW, li_64);
l_ima_16 = iMA(NULL, 0, MA_Period, 0, MA_Method, PRICE_OPEN, li_64);
l_ima_24 = iMA(NULL, 0, MA_Period, 0, MA_Method, PRICE_HIGH, li_64);
ld_32 = (g_ibuf_116[li_64 + 1] + (g_ibuf_120[li_64 + 1])) / 2.0;
ld_56 = (l_ima_0 + l_ima_24 + l_ima_16 + l_ima_8) / 4.0;
ld_40 = MathMax(l_ima_24, MathMax(ld_32, ld_56));
ld_48 = MathMin(l_ima_16, MathMin(ld_32, ld_56));
if (ld_32 > ld_40) {
g_ibuf_108[li_64] = ld_32 - ld_40;
g_ibuf_112[li_64] = 0;
} else if (ld_32 < ld_48) {
g_ibuf_108[li_64] = 0;
g_ibuf_112[li_64] = ld_48 - ld_32;
} else {
g_ibuf_108[li_64] = 0;
g_ibuf_112[li_64] = 0;
}
}
if (Sound_Alert) {
if (g_ibuf_108[0] > 0) {
prior_text = "Above";
PlaySound("alert.wav");
} else if (g_ibuf_112[0] > 0) {
prior_text = "Below";
PlaySound("alert.wav");
}
}
if (POP_UP_Box_Alert) {
if (g_ibuf_108[0] > 0) {
if (prior_text != "Above") {
prior_text = "Above";
Alert("Above");
}
} else if (g_ibuf_112[0] > 0) {
if (prior_text != "Below") {
prior_text = "Below";
Alert("Below");
}}}
return (0);
};
 
 
  • Post #58,182
  • Quote
  • Edited Jan 23, 2023 7:13am Jan 22, 2023 2:18pm | Edited Jan 23, 2023 7:13am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,496 Posts | Online Now
Quoting nomanm47
Disliked
...I am formulating a candlestick pattern indicator and trying to include a specific condition in the formula...Bullish engulfing patterns...I want to see "x" number of bearish candles before...give a basic formula as to how we would achieve that...
Ignored
It would look something like the below, to check if any candle meets that condition-
ps not tested
Inserted Code
bool check_special_bullish_engulfing(int lookback, int e)
{
  
   //check candle at index e is bullish
   if(Open[e]<Close[e]){
  
      //check candle at index e engulfs previous candle
      double cur_body_high = MathMax(Open[e],Close[e]);
      double cur_body_low = MathMin(Open[e],Close[e]);
      double pre_body_high = MathMax(Open[e+1],Close[e+1]);
      double pre_body_low = MathMin(Open[e+1],Close[e+1]);
  
      if(pre_body_high<=cur_body_high && pre_body_low>=cur_body_low){
      
         //check for string of consecutive bear candles before e
         int count_bear = 0;
         for(int i=e+1; i<MathMin(i+lookback,Bars-1); i++){
            if(Open[i]>=Close[i]){
               count_bear++;
            }
            else{
               break;//not consecutive, stop
            }
         }
        
         //check all lookback candles are bear
         if(count_bear==lookback){
            return(true);
         }
        
      }//check engulf
   }//check bull
  
   return(false);
}
 
1
  • Post #58,183
  • Quote
  • Edited 7:21pm Jan 22, 2023 6:42pm | Edited 7:21pm
  •  2be
  • Joined Mar 2007 | Status: Member | 925 Posts
Quoting 2be
Disliked
Dear Coders, I would like to have a more organised look at the PA on every third Fri of the month, in a sequence and colour differential described below. I am looking for a coder to create an indicator for MT4 showing the following: Spring Triple witching Friday, Third Fri in March, Colour Green, continuous vertical line line Third Fri in April, Colour Green, vertical line dotted Third Fri in May, Colour Green, vertical line interspaced Summer Triple witching Friday, Third Fri in June, Colour Red, continuous vertical line line Third Fri in July,...
Ignored
Have created Template with vertical lines indicating these 3rd Fridays with additional two white lines for 4th of July and Thanskiving.
As it is not an indicator, and I do not wish to clatter this indicator thread, please PM me if you would like the template, or search for it im my Journal as I will post it there.
https://www.forexfactory.com/thread/...1#post14297101
Wishing good trading to all,
2be
Celebrating discipline.
 
 
  • Post #58,184
  • Quote
  • Jan 22, 2023 10:11pm Jan 22, 2023 10:11pm
  •  masantok
  • | Joined May 2022 | Status: Member | 24 Posts
dear coder,

can you please modify this indicator to show weekly, monthly & yearly NOT only daily box range? in indicator setting window, there should be dropdown option like this: ShowPeriod = Daily Weekly Monthly Yearly

thanks for your help
Attached File(s)
File Type: mq4 dailybox_en.mq4   5 KB | 60 downloads
 
 
  • Post #58,185
  • Quote
  • Jan 22, 2023 11:04pm Jan 22, 2023 11:04pm
  •  scbaghel4gm
  • | Joined Jan 2023 | Status: Junior Member | 1 Post
I want simple buy button with preset pips profit target, SL
and close button.
 
 
  • Post #58,186
  • Quote
  • Jan 23, 2023 5:58am Jan 23, 2023 5:58am
  •  olwethufx
  • | Joined Sep 2016 | Status: Member | 16 Posts
Humble greetings dear coders.

Any coder up to the challenge of cleaning up this code to load on MT4 platform e. Picked it up on a trading view forum. Want to try it. Seems accurate and useful.

Attached is the code as shown on the forum but once exported to meta editor, it losses the definitions and fails to load.

Please excuse me. I'm a noob. Still trying to understand coding and learning each day.

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

Name: Screenshot_20230105_181838.jpg
Size: 44 KB
Click to Enlarge

Name: Screenshot_20230105_181923.jpg
Size: 18 KB
Attached File(s)
File Type: mq4 SmartMoneyPullback.mq4   2 KB | 233 downloads
File Type: mq4 SmartMoney.mq4   65 KB | 253 downloads
 
 
  • Post #58,187
  • Quote
  • Jan 23, 2023 3:23pm Jan 23, 2023 3:23pm
  •  leeshindig
  • Joined Apr 2007 | Status: Member | 318 Posts
Does anyone know a simple indicator which does similar to this on this old post (the indicator there doesn't work for me)..

Quite simply I need an indicator which will look at the previous day - plot a horizontal line from the highest volume candle to the end of day. Would be good to have a days back option, or have it set at 7 or 10.

I'd be happy with a line from middle of candle.. or one from both high and low..

I'm working on a 15 min chart but I guess that doesn't matter.


https://www.forexfactory.com/thread/...35#post8488635
 
 
  • Post #58,188
  • Quote
  • Jan 23, 2023 4:23pm Jan 23, 2023 4:23pm
  •  metaforex
  • | Joined Mar 2022 | Status: Member | 9 Posts
Hello Brother,

hope you are doing great, i have been following this thread since a very long time and i really appreciate the effort is being made in this thread.

i need your help for coading a very simple strategy EA which has hedge + martingale feature

if CCI indicator goes above 125, bot open sell and if CCI indicator goes below -125, bot open buy on period of 14 on candle close (this variables can be changeable)

ea can open sell and buy same time as price reaches CCI level assigned

lot size depend on balance option with RR management

I will highly appreciate if you could help me code this ea

have a great day ahead
 
 
  • Post #58,189
  • Quote
  • Jan 24, 2023 1:11am Jan 24, 2023 1:11am
  •  HumbleLearne
  • Joined Feb 2016 | Status: Member | 304 Posts
Hi Dear All ,
As you all know that there are many indicators which show the supply and demend Zone area's after the price has left the zone either on the supply or demand side ......

Does any one has Supply and demand indicator which shows zones or lines of the future by extending the previous supply and demand zone or lines please ...Your Help , cooperation & coordination willl be very highly appreciated ...THANKING YOU ALL IN ADVANCE
 
 
  • Post #58,190
  • Quote
  • Jan 24, 2023 5:28am Jan 24, 2023 5:28am
  •  astroboyong
  • | Joined Aug 2021 | Status: Member | 4 Posts
I've been using this simple order panel for MT5 https://www.mql5.com/en/code/40252
so far works great for me. When I enter on trade, it allows me to automatically set my SL and TP as required.
and there's close partial, breakeven button as well.

What I'm looking for is, order panel that can enter multiple order with different SL and TP.

For example, currently, if I enter 1 Lot, if price moves 30pips, I close partial 0.25 lot. if price moves another 30 pips, I close another 0.25 lot and so on.
I know I can just set the lot to 0.25, and press buy 4 times.
Instead of doing this, is there any EA order panel outer there, after we set all the settings, when I press buy, it will automatically enter 4 trades for example.
0.25 each. with different SL and TP

1. 0.25 lot SL 50 pips TP 30 Pips
2. 0.25 lot SL 50 Pips TP 60 Pips
3. 0.25 lot SL 50 Pips TP 90 Pips
4. 0.25 lot SL 50 Pips TP 120 Pips

Thank you
 
 
  • Post #58,191
  • Quote
  • Edited 7:48am Jan 24, 2023 7:29am | Edited 7:48am
  •  wens
  • Joined Dec 2018 | Status: &quot; Action = Result &quot; | 112 Posts
Hey! Please make the dashboard move around the terminal with the mouse or make ON / OFF buttons if possible and both options will suit.
Thank you!
Attached Image (click to enlarge)
Click to Enlarge

Name: Time Dachboard.jpg
Size: 119 KB
Attached File(s)
File Type: mq4 Forex Dream Time Dashboard.mq4   13 KB | 159 downloads
 
1
  • Post #58,192
  • Quote
  • Jan 24, 2023 11:33am Jan 24, 2023 11:33am
  •  Isabella_D
  • Joined Jan 2012 | Status: Member | 961 Posts
[quote=Isabella_D;14296878]... looking for an effective way of examining time and price in a fixed (or yet to be determined) time frame in order to be able to expect a possible development more realistically (statistically). ...

thx, its done.
Was not so difficult as I expected. And meanwhile historical Indis are often very usefull. I mentioned the sources above.
Thats the same like Tomatoes grow from proven old seeds.
Documentation is still open-
maybe I will ask my AI-Friend Alois
green pips for all
 
 
  • Post #58,193
  • Quote
  • Jan 24, 2023 12:16pm Jan 24, 2023 12:16pm
  •  nomanm47
  • | Joined Feb 2021 | Status: Member | 56 Posts
Hi All

Is there a script that opens up chart for pairs which have an open order?

Eg. Scalp EA opens multiple trades in a short space of time, Scripts loads charts for those pairs. Rather than simply doing it manually or flicking through pairs one at a time?

Thanks
 
 
  • Post #58,194
  • Quote
  • Jan 24, 2023 9:35pm Jan 24, 2023 9:35pm
  •  ciscok9
  • | Joined Mar 2012 | Status: Member | 35 Posts
Hello,

I am looking for an EA that opens a Sell or Buy Order (you predefine lot size) once a price bar (for example H1 or H4) closes below/above certain price (you predefine this price). TP or SL is not necessary to set in this EA, since there are many that could do this once the order is placed.

Please help me! It is a very simple rule and hope I explained myself well

Thank you very much
 
 
  • Post #58,195
  • Quote
  • Jan 25, 2023 2:51am Jan 25, 2023 2:51am
  •  treiada.3dg
  • | Joined Jan 2023 | Status: Junior Member | 1 Post
Hello. Please help to translate (reprogram) for mt5. The screenshot shows how it works for MT4.
Thank you very much Please help me!
Attached Image (click to enlarge)
Click to Enlarge

Name: мт4.png
Size: 17 KB
Attached File(s)
File Type: mq4 ColoredVolumesEn.mq4.mq4   24 KB | 94 downloads
 
 
  • Post #58,196
  • Quote
  • Jan 25, 2023 4:42am Jan 25, 2023 4:42am
  •  decodagobert
  • | Joined Oct 2015 | Status: Member | 5 Posts
HI all,

I'm searching a simple session breakout EA,

no indis are needed.

adjustments for TP, SL and sessions houres are necessary.

thanks in advance, greetings from Switzerland


dc
 
 
  • Post #58,197
  • Quote
  • Edited 6:49pm Jan 25, 2023 5:18am | Edited 6:49pm
  •  tc1688
  • | Joined Sep 2019 | Status: Member | 39 Posts
dear coder,

can you please modify this indicator to show M5,M15 &M30 NOT only Time box range?
in indicator setting window, there should be dropdown option like this:
TimeFrame = Current time frame

thanks for your help
Attached File(s)
File Type: mq4 BBand Stop.mq4   5 KB | 49 downloads
的
 
 
  • Post #58,198
  • Quote
  • Jan 25, 2023 5:21am Jan 25, 2023 5:21am
  •  Sidtrading
  • | Joined Jan 2021 | Status: Member | 23 Posts
Hello everyone...


I got this indicator. Can anyone add a button to this.
I am not a coder, but I tried my best, and it's not working out for me.


Please help me out on this.

Regards
Sid.
Attached File(s)
File Type: mq4 ! Auto Sessions SOS (1).mq4   139 KB | 57 downloads
 
 
  • Post #58,199
  • Quote
  • Jan 25, 2023 7:05am Jan 25, 2023 7:05am
  •  Paloduro
  • | Joined Jan 2023 | Status: Member | 59 Posts
hi fellows traders, please share a button to put on the chart to close all trades with a click.
Attached Image (click to enlarge)
Click to Enlarge

Name: @ cierra.PNG
Size: 11 KB
ONLY AN IDIOT ASK FOR 2 YEARS EXPERIENCE TO TRADE ANY SYSTEM
 
 
  • Post #58,200
  • Quote
  • Jan 25, 2023 8:45am Jan 25, 2023 8:45am
  •  greg0818
  • | Joined Nov 2021 | Status: Member | 3 Posts
Good afternoon,

I am looking for an EA that will be able to read alert signals of 3 indicators, and then place a trade once all alert criteria have been met.

Is this possible?

Many Thanks
G
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 29082909Page 291029112912 2983
    • 1 Page 2910 2983
28 traders viewing now, 4 are members:
Marcus05
,
Psggold
,
Pepito
,
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 / ©2023