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

Need help to code EAs for MT4 and MT5 5 replies

I will code your pivot EAs for no charge 20 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
  • 42,495
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 26502651Page 265226532654 3087
  • 1 Page 2652 3087
  •  
  • Post #53,021
  • Quote
  • Jul 6, 2022 9:54am Jul 6, 2022 9:54am
  •  RiskFighter
  • Joined Jun 2017 | Status: Member | 696 Posts
Quoting butcher
Disliked
Hello mtiwana! I hope you're doing well. I'm currently using EA Builder and trying to define the trend direction. It seems to me like the standard set of MT4 indicators doesn't allow to define the trend direction accurately. Do you have any indicator or code line that I can add to EA Builder that help me define e.g. the angle of the SMA slope that is required before a trade can get executed? Thanks in advance! butcher
Ignored
In post 53018 you can find this codeline in the MQ file: if(Close[1] > ((High[1] - Low[1])*45/100 + Low[1]) && Open[1] > ((High[1] - Low[1])*45/100 + Low[1]) && Close[1] < iMA(NULL,0,Length,0,MODE_EMA,0,1))

It defines a 45 degree slope from 1 bar to the next. You can make it over some more bars to be more correct.

There must be a better way, but I think this works.
Read post #1 !! Then read it again 10 more times before you ask.
 
 
  • Post #53,022
  • Quote
  • Jul 6, 2022 5:14pm Jul 6, 2022 5:14pm
  •  danerius
  • | Joined Jan 2020 | Status: Member | 29 Posts
Quoting jeanlouie
Disliked
int i=some int number; double value = Close[i]; You can experiment by printing out close values: int z= 3; Print("close at candle ",z," is ",Close[z]);
Ignored
Hi jeanlouise

I couldnt get Print to work but Comment worked fine, as did Alert. Made this to test it out.

Thanks

Inserted Code
//+------------------------------------------------------------------+
#property copyright "2022 Bo Danerius"
#property link      "work.danerius.se"
#property version   "1.00"
#property strict
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
int z= 0;
int y= 1;
Comment
("----------------------------------------\n", 
"Close at candle ", z, " is ",Close[z],
"\n----------------------------------------\n", 
"Close at candle ", y, " is ",Close[y],
"\n----------------------------------------\n");
   return(rates_total);
  }
//+------------------------------------------------------------------+
 
 
  • Post #53,023
  • Quote
  • Jul 6, 2022 5:52pm Jul 6, 2022 5:52pm
  •  Ieis5
  • | Joined May 2021 | Status: Member | 104 Posts
Quoting Gumrai
Disliked
{quote} Hello, This is not an EA, it is 2 scripts. The first will copy any trend or horizontal lines from the chart. The second will paste those lines onto another chart. If you move the lines on one of the charts, using the 2 scripts will move the lines on the other chart. {file} {file}
Ignored
can somebody make this script open source and include all the various type of objects used by metaquotes. trendlines are not enough, i need rectangles too for instance
 
 
  • Post #53,024
  • Quote
  • Jul 6, 2022 6:20pm Jul 6, 2022 6:20pm
  •  danerius
  • | Joined Jan 2020 | Status: Member | 29 Posts
Hi guys

I was thinking of a novel way of displaying Support and Resistance in an Indicator.

- The idea is to draw horizontal lines for every Close Price on a chart. They will cluster around
Support and Resistance Levels and give a clear and easily readable patterns.
- It will require eliminating the regular horisontal grid lines. Can that be coded in the Indicator?
- I havent seen any Alpha setting for Lines. But if thats doable, it would be really useful.
- Maybe a choice of displaying Close Prices from different Time Lines would be useful.

To anyone wo decides to try and code this. Big thanks and if anything is unclear. Feel free to ask

Sincereöy /Bo
 
 
  • Post #53,025
  • Quote
  • Jul 7, 2022 2:24am Jul 7, 2022 2:24am
  •  Uru
  • | Joined Jan 2019 | Status: Member | 162 Posts
Este lo puedes prender y apagar, y funciona bien!!
Attached File(s)
File Type: mq4 Supply-Demand-Zones BT.mq4   73 KB | 174 downloads
 
1
  • Post #53,026
  • Quote
  • Jul 7, 2022 3:40am Jul 7, 2022 3:40am
  •  Samalin
  • Joined Apr 2017 | Status: Member | 725 Posts
Good day Coders and traders, please i need help on this, i have searched all over internet for MTF William Accumulation and Distribution + ma indicator
i cant find the MTF version with MA, is either with ma not mtf or mtf no MA, attached is what i found but they are not giving same signal

please i need help to make the attach version MTF or please kindly share if you have mtf version + ma
Attached Image (click to enlarge)
Click to Enlarge

Name: FF.png
Size: 15 KB
Attached File(s)
File Type: mq4 !williams ad ma indicator_v2.mq4   19 KB | 106 downloads
 
 
  • Post #53,027
  • Quote
  • Jul 7, 2022 8:12am Jul 7, 2022 8:12am
  •  Sorobanista
  • Joined Jan 2017 | Status: Member | 471 Posts
Does anyone know if there is a way for the metatrader popup to be on top of any program, such as the browser for example.
Caution, patience and balance.
 
 
  • Post #53,028
  • Quote
  • Jul 7, 2022 10:01am Jul 7, 2022 10:01am
  •  ffpa
  • | Joined Dec 2013 | Status: Member | 251 Posts | Online Now
Quoting Sorobanista
Disliked
Does anyone know if there is a way for the metatrader popup to be on top of any program, such as the browser for example.
Ignored
IMHO it is possible to be done with external application (program) which control "windows". However it should be application which controls also "internal windows" like popus. Frankly speaking i forgot how those internal windows are called.
 
1
  • Post #53,029
  • Quote
  • Jul 7, 2022 10:46am Jul 7, 2022 10:46am
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting danerius
Disliked
Hi guys I was thinking of a novel way of displaying Support and Resistance in an Indicator. - The idea is to draw horizontal lines for every Close Price on a chart. They will cluster around Support and Resistance Levels and give a clear and easily readable patterns. - It will require eliminating the regular horisontal grid lines. Can that be coded in the Indicator? - I havent seen any Alpha setting for Lines. But if thats doable, it would be really useful. - Maybe a choice of displaying Close Prices from different Time Lines would be useful. To...
Ignored
You could use fractal swing highs . and Lows of higher tf for lower tf support and resistance.


What you should do is code an indicator to identify the most 2 most recent bullish and bearish engulfing candlestick patterns above and below current market price.

Have MTF feature of the indicator.

For bullish engulfing candle patterns the open price of the engulfed candle have a horizontal line stretched to current Data and horizontal price line at the low of the engulfing candle pattern that form a zone .

For bearish engulfing candle pattern the open price of the engulfed candle and high of the engulfing candle pattern horizontal price line.

When price trade there on lower timeframe we look for resistance/ support (supply and demand zone to form at those levels .
 
 
  • Post #53,030
  • Quote
  • Jul 7, 2022 11:31am Jul 7, 2022 11:31am
  •  Sorobanista
  • Joined Jan 2017 | Status: Member | 471 Posts
Quoting ffpriceactio
Disliked
{quote} IMHO it is possible to be done with external application (program) which control "windows". However it should be application which controls also "internal windows" like popus. Frankly speaking i forgot how those internal windows are called.
Ignored
Thanks for the idea, I'll look into it, I thought leaving her priority high would work, but it doesn't.
I'll see if I can find a program.
Caution, patience and balance.
 
 
  • Post #53,031
  • Quote
  • Jul 7, 2022 11:49am Jul 7, 2022 11:49am
  •  pa18
  • | Joined Jan 2009 | Status: Member | 471 Posts
Hello FF,

Anyone kind enough to change this indicator?

Attached File(s)
File Type: mq4 WRB-Hidden-Gap-BT.mq4   32 KB | 128 downloads


The gaps extend rectangles to the right of the screen,but I want it not to, I want it to mark up the bars where the gap starts from.

Thanks for looking
 
 
  • Post #53,032
  • Quote
  • Jul 7, 2022 12:42pm Jul 7, 2022 12:42pm
  •  Tankk
  • Joined Sep 2021 | Status: ********* | 403 Posts
Quoting Samalin
Disliked
Good day Coders and traders, please i need help on this, i have searched all over internet for MTF William Accumulation and Distribution + ma indicator i cant find the MTF version with MA, is either with ma not mtf or mtf no MA, attached is what i found but they are not giving same signal please i need help to make the attach version MTF or please kindly share if you have mtf version + ma
Ignored
Williams AD +MA MTF TT [x3 AG]

Indicator repaints in MTF mode! ALERTBAR corrected for MTF.
Attached Image (click to enlarge)
Click to Enlarge

Name: Williams AD +MA MTF TT [x3 AG]_07-07-2022.png
Size: 48 KB
Attached File(s)
File Type: ex4 Williams AD +MA MTF TT [x3 AG].ex4   28 KB | 126 downloads
study indicator settings and test it well...
 
2
  • Post #53,033
  • Quote
  • Jul 7, 2022 1:22pm Jul 7, 2022 1:22pm
  •  ToSUser
  • | Joined Jul 2022 | Status: Junior Member | 1 Post
Does anyone have an indicator for ThinkorSwim that will display relative volume correctly? That is, rather than just comparing the current time frame's volume to the past "X" bars' volumes (which is what the default relative volume study does), the study should compare the same time slice across "X" number of historical days. For example, if looking at 5-min bars, and there were 10,000 contracts exchanged during the 5-min period from 11:50 to 11:55, but the average volume of the 11:50 to 11:55 period over the past 30 sessions is 15,000 then it should show the volume for this 5-min slice as -5,000. Would also be nice if there was a line graph overlay that showed this in terms of % (in the foregoing example it would be -33.3%...i.e., -5,000/15,000). So bar chart showing true relative volume in terms of contracts, and an overlaid line graph showing the implied % variance from average. If this doesn't exist...is anyone willing to build it?
 
 
  • Post #53,034
  • Quote
  • Jul 7, 2022 2:08pm Jul 7, 2022 2:08pm
  •  Olababa
  • | Joined Jul 2019 | Status: Member | 21 Posts
Quoting mntiwana
Disliked
{quote} "[ORT] Supply_Demand_v3 nmc" There are variety of indicators displayed like that and a lot of variations of it differently managed i dont know if it help you or not any way posting may be help some others too beware of fractal behavior {image}{image} {file}
Ignored
Attached Image (click to enlarge)
Click to Enlarge

Name: IMG_20220707_190443.jpg
Size: 144 KB
Thank you sir
Is different from what you shared
Take a look again at the picture and the arrow
How it works sir
Thanks in advance
 
 
  • Post #53,035
  • Quote
  • Jul 7, 2022 2:49pm Jul 7, 2022 2:49pm
  •  Samalin
  • Joined Apr 2017 | Status: Member | 725 Posts
Quoting Tankk
Disliked
{quote} Williams AD +MA MTF TT [x3 AG] Indicator repaints in MTF mode! ALERTBAR corrected for MTF. {image} {file}
Ignored
thanks so much Sir, i appreciate may you remain blessed
 
1
  • Post #53,036
  • Quote
  • Jul 7, 2022 6:06pm Jul 7, 2022 6:06pm
  •  masantok
  • | Joined May 2022 | Status: Member | 24 Posts
hi all, found this buy-sell indicator from bing search (cant remember the download link). for me, this is the most "accurate" signal indicator i have tested for previous bar / candle. for current bar / candle, this indicator give "false" signal maybe because its kind of lagging / repainting indicator. to use it, i need to wait at least 3 bar before enter a trade

can you please fix this indicator from repainting to non-repainting? thanks
Attached Image (click to enlarge)
Click to Enlarge

Name: hbs.png
Size: 41 KB
Attached File(s)
File Type: mq4 hbs.mq4   2 KB | 154 downloads
 
 
  • Post #53,037
  • Quote
  • Jul 7, 2022 10:25pm Jul 7, 2022 10:25pm
  •  bojack34
  • Joined Mar 2017 | Status: Member | 2,043 Posts
Could someone please make this indicator show 31 days instead of 20? TYVM!!

Attached File(s)
File Type: mq4 i-Profittracker20Days.mq4   59 KB | 152 downloads
 
1
  • Post #53,038
  • Quote
  • Jul 8, 2022 1:00am Jul 8, 2022 1:00am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,092 Posts
Quoting bojack34
Disliked
Could someone please make this indicator show 31 days instead of 20? TYVM!! {file}
Ignored
the way it is programmed, it would be almost impossible to change.
It would take forever to modify as it is entirely plus/minus operation.
 
1
  • Post #53,039
  • Quote
  • Jul 8, 2022 1:12am Jul 8, 2022 1:12am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,092 Posts
Quoting pa18
Disliked
Hello FF, Anyone kind enough to change this indicator? {file} The gaps extend rectangles to the right of the screen,but I want it not to, I want it to mark up the bars where the gap starts from. Thanks for looking
Ignored
check this out. Box should stop at Candle 0.
Attached File(s)
File Type: mq4 WRB-Hidden-Gap-BT.mq4   32 KB | 151 downloads
 
1
  • Post #53,040
  • Quote
  • Jul 8, 2022 4:04am Jul 8, 2022 4:04am
  •  GC-Finance
  • | Joined Jun 2022 | Status: Member | 139 Posts
Hi everyone,

I have an EA that sets automatic stop and target, at a specified number of pips, when an order is sent to the platform (I use MT4).

However, there are some issues:

1) it doesn't work with the 1-click order in the top left of MT4;
2) it changes the S/L and T/P when MT4 is closed;
3) it only works on the first trade, meaning that when placing a second trade it doesn't set any stop or target.

Can anyone help me fixing these issues, please?

It would be also great to allow the EA to use fractional pips, meaning to have the possibility of setting the stops/targets at, say, 10.5 pips, rather than being forced to use 10 or 11.

Thank you so much!
Attached File(s)
File Type: ex4 AutomaticStopTarget.ex4   7 KB | 63 downloads
File Type: mq4 AutomaticStopTarget.mq4   1 KB | 74 downloads
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 26502651Page 265226532654 3087
    • 1 Page 2652 3087
21 traders viewing now, 4 are members:
roma23
,
Invisible
,
osnatw
,
erex
  • 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