• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 8:01pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:01pm
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 55 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,102
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 27192720Page 272127222723 2989
  • 1 Page 2721 2989
  •  
  • Post #54,401
  • Quote
  • Sep 15, 2022 3:16am Sep 15, 2022 3:16am
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,306 Posts
Quoting GetThere
Disliked
Here you are...{file}
Ignored
Thanks it's not displaying correctly it displayed blank
 
 
  • Post #54,402
  • Quote
  • Sep 15, 2022 3:33am Sep 15, 2022 3:33am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,053 Posts
Quoting Slingshots1
Disliked
{quote} Thanks sir appreciate your talent with time I bet you can find that mystery of ATR behind the DOT it's all I need in the regression channel including alert of course please sir you can get to the root even if it's next year as long as God continues to spare this one life we have, but there's no rush about it until you find time to look into it.Rgds
Ignored
Not sure what you are looking for.
Like I said complex formular find regression line - and it checks if value is within ATR_gap and if that is swing low or high.

double ATR_Gap = 0.6 * iATR(Symbol(), 0, 50, 1);

this is the formula it sets dot on high side.


if ( Var_B > 0.0 &&
MathAbs(High[n] - Buffer_C[n]) < ATR_Gap &&
//peak
High[n] > High[n - 1] &&
High[n] > High[n + 1] &&
High[n] > High[n - 2] &&
High[n] > High[n + 2]
)
{
Buffer_High_Dot[n] = High[n] + ATR_Gap;

where as Var_B is
double Var_B = (SumOfClosePriceTimesIndex * barsToCount - SumOfIndex * SumofClosePrice) / Var_A;

..

there are very complex formular used in this format and it will require higher math to understand this formula.
It is beyond my scope to understand how those lines are drawn.
All I know is it find lines based on regression formula and if high is within range and it is swing H, it plot dots on high poin.
 
1
  • Post #54,403
  • Quote
  • Sep 15, 2022 3:58am Sep 15, 2022 3:58am
  •  Pepi
  • | Joined Aug 2022 | Status: Junior Member | 6 Posts
Hi,
I am very new to mql4 and do not have much experience with it
I got a custom indicator with 3 buffers. Afterwards I wrote EA that uses this indicator via iCustom function.
If I leave indicator code as it is and only put EA on chart window, it receives buffer value 2147483647 (empty).
If I put indicator on the chart window first and than place EA on the chart window, EA receives correct buffer values.
I than started to comment out parts of indicator that were not relevant for calculation, but for displaying values on the chart window.
In the init () function there are two lines to set indicator name:
string ExtName ="blablabla_v0.1";
IndicatorShortName(ExtName);

Later on in the start() function there are lines:
int start()
{
//logprint("..... start() .....");
string name;
int i;
int col;
int line;
windex=WindowFind(ExtName);
//----
if(windex<0) return(0); ..........

The last line "if(windex<0) return(0);" somehow causes problems for EA not to receive correct value from indicator buffer.
Can someone please explain why this is causing the issue and how I can fix it?
Many thanks in advance.
 
 
  • Post #54,404
  • Quote
  • Sep 15, 2022 4:26am Sep 15, 2022 4:26am
  •  PatienceFx
  • Joined Jun 2013 | Status: enjoying life | 15,152 Posts
normally i take trades and forget about it, looking only at end results

is it possible to list on chart the list of trades taken today and the profit of each

this way i will get motivated to trade better each time
Indicators on my chart help me guess the trade they do not guarantee result
 
 
  • Post #54,405
  • Quote
  • Sep 15, 2022 5:50am Sep 15, 2022 5:50am
  •  Shaina
  • | Joined Sep 2022 | 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
Hello,
I need an ea that can delete pending orders at specified time of the day (implemented as parameter), then I need to select (with a parameters) if delete only buy/sell stop orders or/and buy/sell limit orders
can you create an ea that can do this?
thank you
 
 
  • Post #54,406
  • Quote
  • Sep 15, 2022 6:45am Sep 15, 2022 6:45am
  •  carbonmimeti
  • Joined Jun 2012 | Status: Member | 531 Posts
Quoting carbonmimeti
Disliked
Hello, a friend of main traslate this indicator from mt4 to mt5...it is ok if I have only buy or only sell positions:indicator plot an orizzontal line in order to display average price. But if there are both long and short positions, orizzontal line is wrong. I need two orizzontal line with different colors: one for long and one for short,it is usefull for hedging account mt5 thank's in advance {file}
Ignored
sorry...help please,post n 53615
 
 
  • Post #54,407
  • Quote
  • Sep 15, 2022 7:00am Sep 15, 2022 7:00am
  •  MwlRCT
  • Joined Aug 2019 | Status: Member | 129 Posts
Quoting HLscalper
Disliked
Hello guys , do you know some free EA for MT5 which calculates automatically the position size , based on stop loss . Something like magic keys for example? thanks
Ignored
Try this | Money Management Tool TD

Its free download here.
Attached Image (click to enlarge)
Click to Enlarge

Name: OCR1.JPG
Size: 145 KB
Attached File(s)
File Type: ex5 Money Management Tool TD V2.00.ex5   616 KB | 80 downloads
 
 
  • Post #54,408
  • Quote
  • Sep 15, 2022 10:02am Sep 15, 2022 10:02am
  •  ithorror
  • | Joined Nov 2007 | Status: Member | 37 Posts
Hello guys, I cant find any indi or script like periodcon or p4con or "advanced candle" but for metatrader5. Can someone point me where I can get it please? It's an indi that changes the start time of candles, ie 15min candles starts not every 15min round but eg. at :03 (3minutes later of default candles) or whatever I want. I would appreciate any help! Maybe there is an indi that let you choose the exact start time of daily session and all candles would base on that shifted time? Thanks

PS. Or maybe who knows is it possible to get data from mt5 in mt4 in real time so I can use any indi that works on in mt4...
 
 
  • Post #54,409
  • Quote
  • Sep 15, 2022 10:53am Sep 15, 2022 10:53am
  •  ToxiCx
  • | Joined Sep 2022 | Status: Junior Member | 2 Posts
Hello Dear Coders Trades be with you,
Can someone help please to convert this indicator form MT5 to MT4?

https://www.mql5.com/de/market/produ....google.com%2F


Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 19 KB

I hope hope

Greetings!!
Attached File(s)
File Type: ex5 Automatic Trendlines.ex5   115 KB | 66 downloads
 
 
  • Post #54,410
  • Quote
  • Sep 15, 2022 1:41pm Sep 15, 2022 1:41pm
  •  martetango
  • | Joined Oct 2020 | Status: Member | 24 Posts
Quoting mntiwana
Disliked
{quote} "Averages rainbow 1.02" Here is an multi Averages slope coloring (color change on slope change) in rainbow style it support some 127 averages in total (numbers) but users can choice whatever suits them or required by their strategy/s colors selectable lines width on choice interpolated mtf supportive Sorry for late replying Some explanations for newbies start period : that means from whichever period users can start first averages,either period 1 or 5 or 10 or 55 (default is 10) increment for periods : that means space in between averages...
Ignored

Thank you so much, that's what i was looking for!!!
 
 
  • Post #54,411
  • Quote
  • Sep 15, 2022 2:30pm Sep 15, 2022 2:30pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,053 Posts
Quoting PatienceFx
Disliked
normally i take trades and forget about it, looking only at end results is it possible to list on chart the list of trades taken today and the profit of each this way i will get motivated to trade better each time
Ignored
Maybe, not exactly trade by trade, but this summarize your trade P/L.
You can set Open/Close positons and period of your choice.
Attached File(s)
File Type: mq4 TradeReport_compact.mq4   55 KB | 94 downloads
 
1
  • Post #54,412
  • Quote
  • Sep 15, 2022 4:12pm Sep 15, 2022 4:12pm
  •  mizi123
  • Joined Jan 2015 | Status: Never underestimate value of an pip | 4,358 Posts
Hi i hope all you are well, can someone add push up notification to these indicator, thank you in advance
Attached Image (click to enlarge)
Click to Enlarge

Name: gg.png
Size: 16 KB
Attached File(s)
File Type: ex4 vh.ex4   5 KB | 80 downloads
 
 
  • Post #54,413
  • Quote
  • Sep 15, 2022 9:15pm Sep 15, 2022 9:15pm
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,306 Posts
Quoting BlueRain
Disliked
{quote} Maybe, not exactly trade by trade, but this summarize your trade P/L. You can set Open/Close positons and period of your choice. {file}
Ignored
Sir,I eventually got something similar to the channel thanks so much please i dont know if you have something like the attached in your archives to please share,could be in form of arrow alert at the change of colored candle from blue to red vise versa,, or can add alert in the input of the indicator to change color and candle direction.Thanks
Attached Image (click to enlarge)
Click to Enlarge

Name: FOR FF ATT.PNG
Size: 13 KB
Attached File(s)
File Type: mq4 VQ_bars.mq4   3 KB | 135 downloads
 
 
  • Post #54,414
  • Quote
  • Sep 15, 2022 11:47pm Sep 15, 2022 11:47pm
  •  PatienceFx
  • Joined Jun 2013 | Status: enjoying life | 15,152 Posts
Quoting BlueRain
Disliked
{quote} Maybe, not exactly trade by trade, but this summarize your trade P/L. You can set Open/Close positons and period of your choice. {file}
Ignored
perfect
Indicators on my chart help me guess the trade they do not guarantee result
 
 
  • Post #54,415
  • Quote
  • Sep 16, 2022 12:39am Sep 16, 2022 12:39am
  •  emmy4
  • | Joined Aug 2009 | Status: Member | 137 Posts
Hello great coders in the house, please help to add a pop up alert to this indicator, to alert just once when the arrow shows up. Thanks in advance.
Attached File(s)
File Type: mq4 Buy-Sell (MA Signal).mq4   3 KB | 101 downloads
 
 
  • Post #54,416
  • Quote
  • Edited 4:32am Sep 16, 2022 4:02am | Edited 4:32am
  •  interbucks
  • | Joined Jan 2012 | Status: Member | 279 Posts
Please, I need an alert to be added to the following indicator (alert only once when arrow appears),
or maybe someone has got the same indicator with alert.
Unfortunately the source file is not available.

Thank you kindly.
Attached File(s)
File Type: ex4 RSI_Bands_v1.ex4   11 KB | 82 downloads
 
 
  • Post #54,417
  • Quote
  • Sep 16, 2022 4:20am Sep 16, 2022 4:20am
  •  Rain86
  • | Joined Oct 2020 | Status: Member | 5 Posts
can you please make this EA to open orders based on pipstep after the close of a candle.. and TP is based on a specific number only, remove TP Array and Grid Array. thanks
Attached File(s)
File Type: mq4 Blessing 3 v3.9.6.09.mq4   221 KB | 92 downloads
 
 
  • Post #54,418
  • Quote
  • Sep 16, 2022 4:43am Sep 16, 2022 4:43am
  •  limprobable
  • Joined Jan 2012 | Status: Member | 556 Posts
Hello,

could you please make this indicator MTF

Attached File(s)
File Type: mq4 Congestion Break Out.mq4   13 KB | 164 downloads

thanks and green pips
Bottomless wonders spring from simple rules, which are repeated without end
 
 
  • Post #54,419
  • Quote
  • Sep 16, 2022 6:01am Sep 16, 2022 6:01am
  •  JohnL33
  • | Joined May 2021 | Status: Member | 47 Posts
Hi master coder

I Wonder any coder that can do this.I know there are lot ea and script can do " CLOSE ALL " entry position ,pending and stop..But is it possible to do in indicator file.I know its crazy but i know coder can make its possible here.If possible i want it to close all "Entry position ,pending and stop " current chart by click to the box and actived the script.

Example button
Attached Image (click to enlarge)
Click to Enlarge

Name: 1clickclose.png
Size: 6 KB

Example Script
Attached File(s)
File Type: mq4 Close All.mq4   7 KB | 60 downloads

Example indicator input
Attached Image (click to enlarge)
Click to Enlarge

Name: complete.jpg
Size: 37 KB

Hope can benefit to trader.Thank again
 
 
  • Post #54,420
  • Quote
  • Sep 16, 2022 7:31am Sep 16, 2022 7:31am
  •  eess
  • Joined Feb 2021 | Status: Member | 476 Posts
Quoting JohnL33
Disliked
Hi master coder I Wonder any coder that can do this.I know there are lot ea and script can do " CLOSE ALL " entry position ,pending and stop..But is it possible to do in indicator file.I know its crazy but i know coder can make its possible here.If possible i want it to close all "Entry position ,pending and stop " current chart by click to the box and actived the script. Example button {image} Example Script {file} Example indicator input {image} Hope can benefit to trader.Thank again
Ignored
Indicator cannot, must only be EA or script.
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 27192720Page 272127222723 2989
    • 1 Page 2721 2989
18 traders viewing now, 3 are members:
jducketts84
,
Mirel85
,
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