• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 2:05am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 2:05am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Fixing Your Indicators or EAs (Free) 451 replies

Coding robots and indicators in C# for no charge (cTrader API) 180 replies

Oanda MT4 - Indicators and EAs not showing 1 reply

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
  • 29,729
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 15191520Page 152115221523 2174
  • 1 Page 1521 2174
  •  
  • Post #30,401
  • Quote
  • Sep 1, 2019 3:26pm Sep 1, 2019 3:26pm
  •  emmy4
  • | Joined Aug 2009 | Status: Member | 99 Posts
Hello Coder's, please help to add open price to this indicator. i want to see it's signal, if it doesn't repaint the current candle.
Thanks in advance.
Attached File
File Type: mq4 Stochastic MTF Alert.mq4   16 KB | 108 downloads
  • Post #30,402
  • Quote
  • Sep 1, 2019 3:47pm Sep 1, 2019 3:47pm
  •  KevinSt9
  • | Joined Aug 2015 | Status: Cyborg Scalper | 152 Posts
Hi,

I have the code but I cant seem to get it to compile.

Is there any person that will look at this for me?

And it is for MT5. Nt sure if the code is MT4 or MT5 either.

Many thanks!!
kevinfxtrader blogspot com; 50 PIPS Per Day
  • Post #30,403
  • Quote
  • Sep 1, 2019 5:06pm Sep 1, 2019 5:06pm
  •  Ransking
  • | Joined Apr 2019 | Status: Junior Member | 1 Post
i have some indicators can you code it from mt4 to mt5 indicators for me?
  • Post #30,404
  • Quote
  • Sep 1, 2019 9:08pm Sep 1, 2019 9:08pm
  •  elyutrader
  • | Joined Aug 2019 | Status: Member | 4 Posts
Hey guys can you please help me tweak the below codes to change the end points of the fibs from highest/lowest to opening price of current daily candle (point 1) and opening price of current weekly candle (point 2)? I know this might sound simple but I have no coding knowledge.

Would appreciate any help. Thanks!



//+------------------------------------------------------------------+
//| XIT_FIBS.mq4 |
//| Copyright © 2011, Jeff West - Forex-XIT |
//| http://www.forex-xit.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2011, Jeff West - Forex-XIT"
#property link "http://www.forex-xit.com"
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
extern color Color1=Red;
extern color Color2=Blue;
int init()
{
//---- indicators
ObjectDelete("XIT_FIBO");
Comment("");
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
ObjectDelete("XIT_FIBO");
Comment("");
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
//----
int fibHigh = iHighest(Symbol(),Period(),MODE_HIGH,WindowFirstVisibleBar()-1,1);
int fibLow = iLowest(Symbol(),Period(),MODE_LOW,WindowFirstVisibleBar()-1,1);

datetime highTime = Time[fibHigh];
datetime lowTime = Time[fibLow];

if(fibHigh>fibLow){
WindowRedraw();
ObjectCreate("XIT_FIBO",OBJ_FIBO,0,highTime,High[fibHigh],lowTime,Low[fibLow]);
color levelColor = Color1;
}
else{
WindowRedraw();
ObjectCreate("XIT_FIBO",OBJ_FIBO,0,lowTime,Low[fibLow],highTime,High[fibHigh]);
levelColor = Color2;
}

double fiboPrice1=ObjectGet("XIT_FIBO",OBJPROP_PRICE1);
double fiboPrice2=ObjectGet("XIT_FIBO",OBJPROP_PRICE2);

double fiboPriceDiff = fiboPrice2-fiboPrice1;
string fiboValue0 = DoubleToStr(fiboPrice2-fiboPriceDiff*0.0,Digits);
string fiboValue23 = DoubleToStr(fiboPrice2-fiboPriceDiff*0.236,Digits);
string fiboValue38 = DoubleToStr(fiboPrice2-fiboPriceDiff*0.382,Digits);
string fiboValue50 = DoubleToStr(fiboPrice2-fiboPriceDiff*0.50,Digits);
string fiboValue61 = DoubleToStr(fiboPrice2-fiboPriceDiff*0.618,Digits);
string fiboValue100 = DoubleToStr(fiboPrice2-fiboPriceDiff*1.0,Digits);

ObjectSet("XIT_FIBO",OBJPROP_FIBOLEVELS,6);
ObjectSet("XIT_FIBO",OBJPROP_FIRSTLEVEL+0,0.0);
ObjectSet("XIT_FIBO",OBJPROP_FIRSTLEVEL+1,0.236);
ObjectSet("XIT_FIBO",OBJPROP_FIRSTLEVEL+2,0.382);
ObjectSet("XIT_FIBO",OBJPROP_FIRSTLEVEL+3,0.50);
ObjectSet("XIT_FIBO",OBJPROP_FIRSTLEVEL+4,0.618);
ObjectSet("XIT_FIBO",OBJPROP_FIRSTLEVEL+5,1.0);


ObjectSet("XIT_FIBO",OBJPROP_LEVELCOLOR,levelColor);
ObjectSet("XIT_FIBO",OBJPROP_LEVELWIDTH,1);
ObjectSet("XIT_FIBO",OBJPROP_LEVELSTYLE,STYLE_DASHDOTDOT);
ObjectSetFiboDescription( "XIT_FIBO", 0,fiboValue0+" --> 0.0%");
ObjectSetFiboDescription( "XIT_FIBO", 1,fiboValue23+" --> 23.6%");
ObjectSetFiboDescription( "XIT_FIBO", 2,fiboValue38+" --> 38.2%");
ObjectSetFiboDescription( "XIT_FIBO", 3,fiboValue50+" --> 50.0%");
ObjectSetFiboDescription( "XIT_FIBO", 4,fiboValue61+" --> 61.8%");
ObjectSetFiboDescription( "XIT_FIBO", 5,fiboValue100+" --> 100.0%");


//----
return(0);
}
//+------------------------------------------------------------------+
  • Post #30,405
  • Quote
  • Sep 1, 2019 10:25pm Sep 1, 2019 10:25pm
  •  T4Trade
  • Joined Sep 2017 | Status: Trend Following,Price Action,Marti | 1,565 Posts
dear Coders,

I am looking for a multicolour fib tool that is manual and can be placed on chart as a button like I button.thanks
  • Post #30,406
  • Quote
  • Sep 2, 2019 2:55pm Sep 2, 2019 2:55pm
  •  Brunorm2015
  • | Joined Mar 2019 | Status: Member | 6 Posts
Hello, sorry for my english (I'm using translator).

I would like to have added in this indicator a count of when the candle ended low or high. Ex: when I select the time for the vertical lines to appear, I would also like to be shown a relationship between high and low candles. Thank you very much in advance.
Attached Files
File Type: ex4 Time_vLines.ex4   8 KB | 71 downloads
File Type: mq4 Time_vLines.mq4   2 KB | 89 downloads
  • Post #30,407
  • Quote
  • Sep 2, 2019 3:46pm Sep 2, 2019 3:46pm
  •  amocfx
  • | Joined Feb 2018 | Status: Member | 45 Posts
Hello coders and traders, can anyone pls help me convert this file from MT4 to MT5 compactible?....Thanks guys
Attached File
File Type: mq4 HalfTrend-1.02.mq4   6 KB | 119 downloads
  • Post #30,408
  • Quote
  • Sep 2, 2019 11:16pm Sep 2, 2019 11:16pm
  •  MosDef
  • | Joined Dec 2015 | Status: Member | 52 Posts
Hello,

Could someone kindly help with adding options to move indicator to top right or bottom right corners with x and y axis adjustable settings?

Thanks
Attached File
File Type: mq4 Simple-Swap.mq4   3 KB | 134 downloads
There is no spoon.
  • Post #30,409
  • Quote
  • Sep 3, 2019 8:37am Sep 3, 2019 8:37am
  •  Frag8383
  • Joined Oct 2018 | Status: Member | 159 Posts
Hi,

I would like to know if someone has a indicator that signal this bars or is willing to create it

Down reversal:

 

  1. Type A, a bar with a higher high, and a close below the close of the previous bar
  2. Type B, an outside bar with a close below the close of the previous bar
  3. Type C, an outside bar with a close below the low of the previous bar


The wick has to be bigger on the up part of the candle so the net candle wick is positive

Up Reversals will be the reverse

It will be nice if an arrow appeared below/above the bars and the signal are live so the apper and dissapear as the take place instead of at candle close

Thanks for the help, let me know if you have any questions

  • Post #30,410
  • Quote
  • Sep 3, 2019 6:00pm Sep 3, 2019 6:00pm
  •  frugalliving
  • | Joined Sep 2019 | Status: Member | 3 Posts
Hi can anyone add a push notification to this please.
Attached File
File Type: mq4 RenkoScalp_Signal_.mq4   4 KB | 185 downloads
1
  • Post #30,411
  • Quote
  • Sep 4, 2019 12:51am Sep 4, 2019 12:51am
  •  markets8
  • | Joined Sep 2019 | Status: Junior Member | 1 Post
Can anyone help edit this EA?

When this HedgeEA closes either buy or sell order by TP or SL,
the opposite position will be closed at the same time.
Also add a spread filter.
Attached File
File Type: mq4 mo_bidir_v0_1.mq4   1 KB | 117 downloads
  • Post #30,412
  • Quote
  • Sep 4, 2019 1:22am Sep 4, 2019 1:22am
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 511 Posts
Quoting frugalliving
Disliked
Hi can anyone add a push notification to this please. {file}
Ignored
try this
Attached File
File Type: mq4 RenkoScalp_Signal_Mod_PushNotify.mq4   5 KB | 275 downloads
  • Post #30,413
  • Quote
  • Sep 4, 2019 2:49am Sep 4, 2019 2:49am
  •  skg3007
  • | Commercial Member | Joined Oct 2012 | 100 Posts
Quoting NickBixy
Disliked
{quote} try this {file}
Ignored
Please don't entertain updating decompiled sources.
2
  • Post #30,414
  • Quote
  • Sep 4, 2019 7:49am Sep 4, 2019 7:49am
  •  frugalliving
  • | Joined Sep 2019 | Status: Member | 3 Posts
Quoting NickBixy
Disliked
{quote} try this {file}
Ignored
Thank you, perfect
1
  • Post #30,415
  • Quote
  • Sep 4, 2019 8:01am Sep 4, 2019 8:01am
  •  Watercooler
  • Joined Dec 2008 | Status: Member | 142 Posts
Hi Coders,

I need your help to transform this indicator so that it can shows the daily change's condition of 28 pairs or Block Pairs at the same time. pls refer pictures for more understanding. Thank you in advance
Attached Image (click to enlarge)
Click to Enlarge

Name: Slide1.JPG
Size: 32 KB
Attached File
File Type: mq4 DailyChange_Rev1.mq4   4 KB | 113 downloads
  • Post #30,416
  • Quote
  • Sep 4, 2019 11:14am Sep 4, 2019 11:14am
  •  8tango
  • | Joined Sep 2013 | Status: Member | 175 Posts
Hello,

I would like to build a mt4 indicator which draw red horizontale line when the Kijun Sen (from Ichimoku Kinko Hyo indicator) is horizontale (3 bars minimum), how to build it?

Example on this picture below.


The red lines must to be visible on the timeframes choose into extern bool (for example: weekly = true ; daily = true ; H4 = true ; H1 = false, etc...).

Thank you for your help.
Attached Image (click to enlarge)
Click to Enlarge

Name: GBPUSDH4-2.jpg
Size: 327 KB
  • Post #30,417
  • Quote
  • Sep 4, 2019 4:05pm Sep 4, 2019 4:05pm
  •  Baboonic
  • | Joined Sep 2019 | Status: Member | 10 Posts
Guys im in need of a simple EA that i haven't been able to find on the internet.

It needs to do 2 things:

1.Candle closes above SMA 50 > play default sound alert (alert.wav)

2.Candle closes under SMA 50 > play default sound alert (alert.wav)


So yeah it looks like it very simple to make, but i couldn't find it on the internet.

Thanks in advance.
  • Post #30,418
  • Quote
  • Sep 5, 2019 1:01am Sep 5, 2019 1:01am
  •  sunny163
  • | Joined Apr 2019 | Status: Member | 8 Posts
this script changes all open charts to D1 timeframe
can you help me with something that it will change all open charts to D1 except M30 charts
?
Attached File
File Type: mq4 ChgTFAll.mq4   2 KB | 89 downloads
  • Post #30,419
  • Quote
  • Sep 5, 2019 2:15am Sep 5, 2019 2:15am
  •  Robot Trader
  • Joined Jun 2012 | Status: Member | 1,106 Posts
Quoting vikisiva
Disliked
Hello sir, I need hedging EA. option with Lot exponent, Lot size, TP, SL , SERVER TIMING. Function is first buy a lot in market and 10 pip sl and 10 pip target. If stop loss hit then it will take a new order 0.02 with 10 pip sl and 10 pip target and another stop loss it will take a new order 0.04 with 10 sl and 10 pip target and
Ignored
I have shared a grid EA on my thread that does what you are asking, the TP/SL/Lot size can be any distance or value
Some people say I'm lucky, but the more I practice the luckier I get
  • Post #30,420
  • Quote
  • Sep 5, 2019 8:47am Sep 5, 2019 8:47am
  •  richy247
  • | Joined Jun 2019 | Status: Member | 317 Posts
Hello programmer,
Could you please help remove the Words and numbers on this indicator ..It clusters the line.Would be nice to be able to adjust the Thickness of the lines (if possible)..Thanks
Attached Image (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 114 KB
Attached Files
File Type: ex4 wadda atter pivot.ex4   14 KB | 62 downloads
File Type: mq4 wadda atter pivot.mq4   10 KB | 82 downloads
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 15191520Page 152115221523 2174
    • 1 Page 1521 2174
14 traders viewing now, 3 are members:
BluePainRain
,
Invisible
,
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 / ©2021