• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 8:03am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:03am
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 pivot EAs for no charge 19 replies

I will code your scalping EAs for no charge 39 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
  • 40,086
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 26992700Page 270127022703 2913
  • 1 Page 2701 2913
  •  
  • Post #54,001
  • Quote
  • Aug 26, 2022 9:37pm Aug 26, 2022 9:37pm
  •  GPips
  • Joined Sep 2010 | Status: Member | 397 Posts
Quoting Eod
Disliked
good morning everyone. I replied the request hoping that someone will answer me My english is not perfect but i will try to explain myself to the best. Is it possible to create an indicator for mt4 that shows on the same graph even the 2 tf lower than the one you are looking at? Example: I'm looking at eurusd D1. on the same graph you can also report eurusd h4 and eur usd h1 (or m15)? The indicator must allow you to choose which lower tf to plot. Thanks to those who will help me. you are a fantastic group
Ignored
Maybe you want Mini Charts that allow you to display whatever TF you wish on your main chart.
Attached Image (click to enlarge)
Click to Enlarge

Name: mini charts.png
Size: 59 KB
Find The Pain Points On Your Chart & Trade Off Those Levels
 
 
  • Post #54,002
  • Quote
  • Edited Aug 27, 2022 12:07am Aug 26, 2022 10:35pm | Edited Aug 27, 2022 12:07am
  •  SJr-BRZ
  • | Joined Sep 2021 | Status: Member | 6 Posts
Good evening everyone.

I appreciate if it is possible to respond positively or negatively to the request.

It is possible to code a written indicator from TradingView to MT4.

Follow the link to the source code with the information, and I will also put it below.

https://br.tradingview.com/script/ag4FXRlT/

Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 62 KB


It is an indicator inspired by Didi=Index, but with the following SUPPLEMENTS: Bollinger Bands , Needle Detector with 100% accuracy, Trend Strength Indicator and Trend Tracker Coloring Scheme.
Observation:
> thicker colored line is the I20/8 indicator;
> white line is the I3/8 indicator;
> thinner colored line is the Trend Strength Indicator.

The blue and yellow columns also function as force indicators and serve to detect needle sticks.

Uses tolerance up to the 1% level to confirm a stronger downtrend.


This is open script code.


// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// Adail1321
//@version=5
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// Baturas
//@version=5
indicator(title="Adail-Index", shorttitle="Adail-Index (versão beta)", precision=2)
//SMAs
SMA1 = ta.sma(close,1)
SMA3 = ta.sma(close, 3)
SMA8 = ta.sma(close, 8)
SMA20 = ta.sma(close,20)
SMA1O = ta.sma(open,1)
//DIFS
d38 = ((SMA3 - SMA8) / SMA8) * 100
d208 = ((SMA20 - SMA8) / SMA8) * 100
d18 = ((SMA1 - SMA8) / SMA8) * 100
dO18 = ((SMA1O - SMA8) / SMA8) * 100
osc = d38 - d208
//VOL
dp8 = ta.stdev(close, 8)
srs = ((2 * dp8) / SMA8) * 100
sri = ((-2 * dp8) / SMA8) * 100
sr1 = plot(srs, color=#F0E68C, transp=100)
sr2 = plot(sri, color=#F0E68C, transp=100)
fill(sr1, sr2, color=#FBEFEF, transp=80)
// Plot osc
plot(osc, title="OSCDI", color=(osc >= 0 ? (osc[1] < osc ? #00FF00 : #BF00FF) : (osc[1] < osc ? #DF7401 : #FF0000)), linewidth = 1)
// Plot I20/8
plot(d208, title="I20/8", color=(d208 >= 1 ? (d208[1] < d208 ? #FF0000 : #DAA520) : (d208[1] < d208 ? #BF00FF : #00FF00)), linewidth = 4)
// Plot I3/8
plot(d38, title="I3/8", color=#FBEFEF, linewidth = 4)
// Plot
plot(d18, style=plot.style_histogram, color=#00FFFF, linewidth=3)
plot(dO18, style=plot.style_histogram, color=#FFFF00, linewidth=3)
hline(0, "N1", color=#FFFF00)
band1 = hline(3, "N2", color=#F0F8FF)
band2 = hline(5, "N2", color=#F0F8FF)
band3 = hline(10, "N3", color=#F0F8FF)
band4 = hline(-3, "N2", color=#F0F8FF)
band5 = hline(-5, "N3", color=#F0F8FF)
band6 = hline(-10, "N3", color=#F0F8FF)


End.


==================================================================

If it makes it easier, the source code of the DIDI Index indicator, which gave rise to this revival and improvement of the new ADAIL-INDEX indicator, is attached.

Attached File(s)
File Type: mq4 Didi_index_mtf+alerts+lines nmc.mq4   8 KB | 74 downloads



Thank's.
 
 
  • Post #54,003
  • Quote
  • Aug 26, 2022 11:10pm Aug 26, 2022 11:10pm
  •  Dashsia1971
  • | Joined Aug 2022 | Status: Junior Member | 6 Posts
Quoting BlueRain
Disliked
{quote} Try this one and let me know if you have any issue. I didn't test out. You can enter multiple MagicNumbers seperated by ';' like 1234;4567;12; {file}
Ignored
Hello Dear BlueRain
Dear Many thanks about your Kindly answer .
Ok, I will test it and answer you about this project
Best Regards
siamak
 
 
  • Post #54,004
  • Quote
  • Aug 26, 2022 11:56pm Aug 26, 2022 11:56pm
  •  sol4live
  • | Joined Jan 2009 | Status: Member | 188 Posts
Quoting jeanlouie
Disliked
{quote} Haven't checked many object types but seems fine. Snap_to_OHLC_rect_hl_arr_txt_lbl mt5 - input magnet in pixels - will snap to closest ohlc within magnet {file}
Ignored
Thanks for the helps...

please this indicator does not remove the line objects from the chart, I have tried to see what is wrong. what should I add or remove from the code to make the objects removed when the indicator is detached from chart?

Thank you.
Attached File(s)
File Type: mq4 EJ_Pivot_DWM.mq4   26 KB | 59 downloads
Bjos
 
 
  • Post #54,005
  • Quote
  • Aug 27, 2022 12:11am Aug 27, 2022 12:11am
  •  linker26
  • | Joined Aug 2021 | Status: Member | 95 Posts
Quoting jeanlouie
Disliked
{quote} Haven't checked many object types but seems fine. Snap_to_OHLC_rect_hl_arr_txt_lbl mt5 - input magnet in pixels - will snap to closest ohlc within magnet {file}
Ignored
thanks crack!!!! You have no idea how useful this tool is. Simple but effective!!!
Blessings bro!!!
 
 
  • Post #54,006
  • Quote
  • Aug 27, 2022 5:03am Aug 27, 2022 5:03am
  •  Eod
  • | Joined Nov 2013 | Status: Member | 257 Posts
Quoting wens
Disliked
{quote} Here is another indicator from the same topic! {image} {file}
Ignored
excellent.
thanks
 
 
  • Post #54,007
  • Quote
  • Aug 27, 2022 5:09am Aug 27, 2022 5:09am
  •  satishmajhwa
  • | Joined Jul 2015 | Status: Member | 42 Posts
Quoting GPips
Disliked
{quote} Maybe you want Mini Charts that allow you to display whatever TF you wish on your main chart. {image}
Ignored

kindly shre it indicator mini chart

thanks
 
 
  • Post #54,008
  • Quote
  • Aug 27, 2022 5:09am Aug 27, 2022 5:09am
  •  Eod
  • | Joined Nov 2013 | Status: Member | 257 Posts
Quoting GPips
Disliked
{quote} Maybe you want Mini Charts that allow you to display whatever TF you wish on your main chart. {image}
Ignored
no no.
during the open market, on graph h1, on the rx of last bar, the indi that i looking for, draw the D1 candel that is forming..
see the picture.

I hope to be able to make you understand

Attached Image (click to enlarge)
Click to Enlarge

Name: Cattura.JPG
Size: 160 KB
 
 
  • Post #54,009
  • Quote
  • Aug 27, 2022 5:13am Aug 27, 2022 5:13am
  •  satishmajhwa
  • | Joined Jul 2015 | Status: Member | 42 Posts
Quoting PatienceFx
Disliked
{quote} superb, this solved my problem thank you sir {image}
Ignored


please shrare this one indicator
 
 
  • Post #54,010
  • Quote
  • Aug 27, 2022 6:49am Aug 27, 2022 6:49am
  •  sogff
  • | Joined Nov 2010 | Status: Member | 53 Posts
Please I’m not a programmer but I always like to limit the length of lines on my charts using about 500 bars for the calculations in order not slow down the system but I don’t know how to do this.
How can I limit the number of bars used for drawing of the lines with the following code: -


void deinit() {
}

void start()
{
int counted = IndicatorCounted();
if (counted < 0) return (-1);

if (counted > 0) counted--;
int limit = Bars-counted;

for (int i=0; i < limit; i++)
 
 
  • Post #54,011
  • Quote
  • Aug 27, 2022 9:17am Aug 27, 2022 9:17am
  •  iwudz
  • Joined Mar 2015 | Status: Member | 54 Posts
Quoting sol4live
Disliked
{quote} Thanks for the helps... please this indicator does not remove the line objects from the chart, I have tried to see what is wrong. what should I add or remove from the code to make the objects removed when the indicator is detached from chart? Thank you.{file}
Ignored
done...
Attached File(s)
File Type: mq4 EJ_Pivot_DWM.mq4   26 KB | 56 downloads
 
 
  • Post #54,012
  • Quote
  • Aug 27, 2022 9:25am Aug 27, 2022 9:25am
  •  iwudz
  • Joined Mar 2015 | Status: Member | 54 Posts
Quoting sogff
Disliked
Please I’m not a programmer but I always like to limit the length of lines on my charts using about 500 bars for the calculations in order not slow down the system but I don’t know how to do this. How can I limit the number of bars used for drawing of the lines with the following code: - void deinit() { } void start() { int counted = IndicatorCounted(); if (counted < 0) return (-1); if (counted > 0) counted--; int limit = Bars-counted; for (int i=0; i < limit; i++)
Ignored

try this ..

extern int maxbar = 500;
.
.
.
void start()
{
int counted =maxbar;
if (counted < 0) return (-1);

if (counted > 0) counted--;
int limit = Bars-counted;

for (int i=0; i < limit; i++)


or you can use this
void start()
{
for (int i = MathMax(maxbar -1-IndicatorCounted(),1); i>=0; i--)
 
1
  • Post #54,013
  • Quote
  • Aug 27, 2022 10:56am Aug 27, 2022 10:56am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,053 Posts
Quoting BlueRain
Disliked
{quote} Here is candle_formation. However, other thing, I need source code of v.1.6 to take a look. {file}
Ignored
Quoting Sincere007
{quote} Hey Bluerain, This may se..

This one fixed Divided by Zero issues.
It seems there is formular ( H-C ) / ( H-L) and when H-L is same, it will cause this issue.

I went over and fixed all divisions.
Attached File(s)
File Type: mq4 CandleStick - Formations.mq4   30 KB | 112 downloads
 
1
  • Post #54,014
  • Quote
  • Aug 27, 2022 12:17pm Aug 27, 2022 12:17pm
  •  BluePainRain
  • | Joined May 2015 | Status: Member | 46 Posts
Could anyone please add a small on off button to this indicator ?
Attached File(s)
File Type: mq5 OverlayChart.mq5   8 KB | 43 downloads
 
 
  • Post #54,015
  • Quote
  • Aug 27, 2022 1:08pm Aug 27, 2022 1:08pm
  •  Sincere007
  • | Joined Nov 2018 | Status: Member | 105 Posts
Quoting BlueRain
Disliked
{quote} Quoting Sincere007 {quote} Hey Bluerain, This may se.. This one fixed Divided by Zero issues. It seems there is formular ( H-C ) / ( H-L) and when H-L is same, it will cause this issue. I went over and fixed all divisions. {file}
Ignored
didnt I say you are awesome
 
 
  • Post #54,016
  • Quote
  • Aug 27, 2022 1:15pm Aug 27, 2022 1:15pm
  •  djoko.hk
  • | Joined Aug 2022 | Status: Junior Member | 3 Posts
Quoting mntiwana
Disliked
{quote} You are welcome at FF - I see you are asking for an EA based on super trend indicator and more particularly lower/higher TFS dependent also you seems open either for mt4 or mt5 or both,i guess do you ever tested and demoing like the logic you describing there are variety of super trend indicators around everywhere on various logic's (formula,math,methods) so i think you may,first to chose what type of super trend you are interested in demonstrate with example picture/s - instead pushing FF members to out decide in what of meta terminal...
Ignored

Hello,

I have attached a supertrend indicator and my embarrasing tries of converting it into an EA.

Also attaching an example with annotations.
Attached Image (click to enlarge)
Click to Enlarge

Name: Strategy.png
Size: 36 KB
Attached File(s)
File Type: ex5 supertrend.ex5   8 KB | 65 downloads
File Type: mq5 supertrend.mq5   4 KB | 72 downloads
File Type: ex5 supertrendh.ex5   8 KB | 47 downloads
File Type: mq5 supertrendh.mq5   4 KB | 53 downloads
File Type: ex5 supertrendsystem FINAL.ex5   36 KB | 47 downloads
File Type: mq5 supertrendsystem FINAL.mq5   3 KB | 75 downloads
 
 
  • Post #54,017
  • Quote
  • Aug 27, 2022 1:22pm Aug 27, 2022 1:22pm
  •  sol4live
  • | Joined Jan 2009 | Status: Member | 188 Posts
Quoting iwudz
Disliked
{quote} done... {file}
Ignored
Thank you for the help.

Please, in case of another case like that, what exactly should I address. I see that you deleted the "MyPeriod" comment. Was that what fixed it. I am learning please.
Bjos
 
 
  • Post #54,018
  • Quote
  • Aug 27, 2022 1:44pm Aug 27, 2022 1:44pm
  •  juan195
  • | Joined May 2017 | Status: Junior Member | 1 Post
Hello

If anyone could implements the following code to MT4 this comes from Tradingview it would be lovely
Attached File(s)
File Type: txt inbalance2022.txt   8 KB | 41 downloads
 
 
  • Post #54,019
  • Quote
  • Aug 27, 2022 1:44pm Aug 27, 2022 1:44pm
  •  Uru
  • | Joined Jan 2019 | Status: Member | 84 Posts
[quote=wens;14115466]¡Hola! ¿Quién puede convertir el indicador de TradingView a MT4? ¡Convierte por favor! Auto Pitchfork, Fib Retracement y Zigzag por DGT https://www.tradingview.com/script/F...bscript_update { imagen}[/cita]
the other 2 indicators, you will surely find them here! have a good weekend!
Attached File(s)
File Type: zip auto-andrews-pitchfork-indicator.zip   29 KB | 116 downloads
 
2
  • Post #54,020
  • Quote
  • Aug 27, 2022 1:47pm Aug 27, 2022 1:47pm
  •  Dashsia1971
  • | Joined Aug 2022 | Status: Junior Member | 6 Posts
Quoting Dashsia1971
Disliked
{quote} Hello Dear BlueRain Dear Many thanks about your Kindly answer . Ok, I will test it and answer you about this project Best Regards siamak
Ignored
Hello Dear BlueRain
Sorry to Bother you again .
Dear I Test your EA and I think that there is a problem about add MagicNumbers , I can not add other MagicNumber and also didn't accept ; for adding MagicNumbers .
If possible pls check it and amend for me .
Best Regard
Siamak
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 26992700Page 270127022703 2913
    • 1 Page 2701 2913
22 traders viewing now, 8 are members:
rdas2014
,
talaate
,
venkateshr56
,
nomanm47
,
Feliipeesc
,
zbig
,
zangar
,
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