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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Need help to code EAs for MT4 and MT5 4 replies

I will code your scalping EAs for no charge 36 replies

I will code your pivot EAs for no charge 18 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
  • 37,035
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 889890Page 891892893 2689
  • 1 Page 891 2689
  •  
  • Post #17,801
  • Quote
  • Feb 13, 2017 1:55pm Feb 13, 2017 1:55pm
  •  Rex Tradewell
  • | Joined Feb 2007 | Status: Member | 64 Posts
Quoting fxanalysis
Disliked
{quote} you were on the right track. Now I fixed the necessary. You can think of an array as a place where you have a lot of slots which are indexed with numbers, you can put a number in each slot. more info here (easy understandable source). You can imagine Buffer as memory area containing numeric values of an indicator array. MODIFIED: //+------------------------------------------------------------------+ //| Candle_Range_separate_BullBear.mq4 | //| Rex Tradewell | //| //+------------------------------------------------------------------+...
Ignored

OK, thank you, I think I have it. It still only shows the blue line but how does this look?

//+------------------------------------------------------------------+
//| Candle_Range_separate_BullBear.mq4 |
//| Rex Tradewell |
//|
//+------------------------------------------------------------------+
#property copyright "Rex Tradewell"
#property link ""
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 SkyBlue
#property indicator_width1 2
#property indicator_color2 Red
#property indicator_width2 2
double OpenClose_Buffer[],HighLow_Buffer[];
int PipFactor = 1;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//---- drawing settings
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(0,OpenClose_Buffer);
SetIndexBuffer(1,HighLow_Buffer);
SetIndexLabel(0,"Range");
SetIndexLabel(1,"Range");
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("Candle Range BullBear");
SetIndexLabel(0,"Bull");
SetIndexLabel(1,"Bear");
IndicatorDigits(2);
// Cater for fractional pips
if (Digits == 3 || Digits == 5)
{
PipFactor = 1;
}
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//--- Bull counted in the 1-st buffer
for(int i=0; i<limit;i++)
OpenClose_Buffer[i]=MathAbs((Open[i]-Close[i])/Point)/PipFactor;
//--- Bear counted in the 2-nd buffer
HighLow_Buffer[i]=MathAbs((High[i]-Low[i])/Point)/PipFactor;
//---- done
return(0);
}
//+------------------------------------------------------------------+
 
 
  • Post #17,802
  • Quote
  • Edited at 3:28pm Feb 13, 2017 2:45pm | Edited at 3:28pm
  •  fxanalysis
  • Joined Jan 2017 | Status: fxa | 278 Posts
Quoting Rex Tradewell
Disliked
{quote} OK, thank you, I think I have it. It still only shows the blue line but how does this look? //+------------------------------------------------------------------+ //| Candle_Range_separate_BullBear.mq4 | //| Rex Tradewell | //| //+------------------------------------------------------------------+ #property copyright "Rex Tradewell" #property link "" #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 SkyBlue #property indicator_width1 2 #property indicator_color2 Red #property indicator_width2 2...
Ignored
Ok, now the problem is in syntax(edit :actually it's semantic error )
after if;for;while;e.c. you must use { } so the compiler understands which area to read, else it reads only next line.
Mistakes highlighted.
Recomendation: if you don't have any background of coding then I would recommend to learn easier language ,like python to understand the basics.
If you want to keep learning mql4, read about the function you want to use ,before you do so.
Here is for loops . Again recommend this site to learn from ,because everything is made very clear and understandable.
//+------------------------------------------------------------------+
//| Candle_Range_separate_BullBear.mq4 |
//| Rex Tradewell |
//|
//+------------------------------------------------------------------+
#property copyright "Rex Tradewell"
#property link ""
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 SkyBlue
#property indicator_width1 2
#property indicator_color2 Red
#property indicator_width2 2
double OpenClose_Buffer[],HighLow_Buffer[];
int PipFactor = 1;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//---- drawing settings
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(0,OpenClose_Buffer);
SetIndexBuffer(1,HighLow_Buffer);
SetIndexLabel(0,"Range");
SetIndexLabel(1,"Range");
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("Candle Range BullBear");
SetIndexLabel(0,"Bull");
SetIndexLabel(1,"Bear");
IndicatorDigits(2);
// Cater for fractional pips
if (Digits == 3 || Digits == 5)
{
PipFactor = 1;
}
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//--- Bull counted in the 1-st buffer
for(int i=0; i<limit;i++)
{
OpenClose_Buffer[i]=MathAbs((Open[i]-Close[i])/Point)/PipFactor;
//--- Bear counted in the 2-nd buffer
HighLow_Buffer[i]=MathAbs((High[i]-Low[i])/Point)/PipFactor;
}
//---- done
return(0);
}
//+------------------------------------------------------------------+
Know thyself
 
 
  • Post #17,803
  • Quote
  • Feb 13, 2017 4:30pm Feb 13, 2017 4:30pm
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,040 Posts
Quoting nadiakhan
Disliked
i need this heiken ashi dashboard indicator if someone have please post. {image}
Ignored
Go register at mql5 you will find Tipu under Market some of the files are free when you want to download a message will come up asking if you have mt4 platform click yes and the indicator would be downloaded auto matically into your mt4.Its not going to work if i send you mine due to the mt4 account difference.
 
 
  • Post #17,804
  • Quote
  • Feb 13, 2017 4:38pm Feb 13, 2017 4:38pm
  •  Rex Tradewell
  • | Joined Feb 2007 | Status: Member | 64 Posts
Quoting fxanalysis
Disliked
{quote} Ok, now the problem is in syntax(edit :actually it's semantic error ) after if;for;while;e.c. you must use { } so the compiler understands which area to read, else it reads only next line. Mistakes highlighted. Recomendation: if you don't have any background of coding then I would recommend to learn easier language ,like python to understand the basics. If you want to keep learning mql4, read about the function you want to use ,before you do so. Here is for loops . Again...
Ignored
Hey, that was it. It works! This morning I spent a couple hours on the site you recommended but I think you're right, I need even more basic (Python) to get started. I don't have a lot of application for coding language other than these indicators which I don't plan to do much of but I would like to have the ability to modify and occasionally create. The indicator I'm working toward with you is one I've wanted to do for a long time and I actually learn best doing hands on type application so I really appreciate your willingness to walk me through this stuff.

It seems like we have the foundation for the indicator I'm working toward. You mentioned earlier that it "wouldn't be so hard" but you've seen me in action so I guess you know by now I will be sufficiently challenged.

OK, so here is the goal. The two lines in the indicator above separately representing candles that close down, and candles that close up, over a 5 candle period. Each data point along the indicator line would represent the average of the absolute range of the number of its' respective candles (up close or down close) multiplied by the percentage of the respective candles (up close or down close) belonging in that indicator line. So, if 3 candles closed up and the average absolute range was 75, then 75 would be multiplied they .60 (the percentage of candles of the five that closed up). The same point on the other data line for candles closing down would have an absolute average of the two candles (lets say 30) multiplied by .40

I have to believe were getting into some kind of challenging coding with this?

Here is all I am sure of at this point. I know I will need to change the (second array?) second iteration function from =MathAbs((High[i]-Low[i])/Point) to =MathAbs((Open[i]-Close[i])/Point).

//+------------------------------------------------------------------+
//| Candle_Range_separate_BullBear.mq4 |
//| Rex Tradewell |
//|
//+------------------------------------------------------------------+
#property copyright "Rex Tradewell"
#property link ""
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 SkyBlue
#property indicator_width1 2
#property indicator_color2 Red
#property indicator_width2 2
double OpenClose_Buffer[],HighLow_Buffer[];
int PipFactor = 1;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//---- drawing settings
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(0,OpenClose_Buffer);
SetIndexBuffer(1,HighLow_Buffer);
SetIndexLabel(0,"Range");
SetIndexLabel(1,"Range");
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("Candle Range BullBear");
SetIndexLabel(0,"Bull");
SetIndexLabel(1,"Bear");
IndicatorDigits(2);
// Cater for fractional pips
if (Digits == 3 || Digits == 5)
{
PipFactor = 1;
}
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//--- Bull counted in the 1-st buffer
for(int i=0; i<limit;i++)
{
OpenClose_Buffer[i]=MathAbs((Open[i]-Close[i])/Point)/PipFactor;
//--- Bear counted in the 2-nd buffer
HighLow_Buffer[i]=MathAbs((High[i]-Low[i])/Point)/PipFactor;
}
//---- done
return(0);
}
//+------------------------------------------------------------------+
 
 
  • Post #17,805
  • Quote
  • Feb 13, 2017 8:35pm Feb 13, 2017 8:35pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,848 Posts
Quoting nadiakhan
Disliked
i need this heiken ashi dashboard indicator if someone have please post. {image}
Ignored
I have posted your request on this thread - http://www.forexfactory.com/showthre...59#post9557559

Attached Image (click to enlarge)
Click to Enlarge

Name: HA Dash.png
Size: 65 KB
Trade what you see not what you hope
 
2
  • Post #17,806
  • Quote
  • Feb 13, 2017 11:17pm Feb 13, 2017 11:17pm
  •  hello966
  • | Joined Dec 2009 | Status: Member | 75 Posts
hi... i need an EA which can multiple the lot size opened by MQL5 signal. Anyone can help?
 
 
  • Post #17,807
  • Quote
  • Feb 14, 2017 1:16am Feb 14, 2017 1:16am
  •  fxanalysis
  • Joined Jan 2017 | Status: fxa | 278 Posts
Quoting Rex Tradewell
Disliked
{quote} Hey, that was it. It works! This morning I spent a couple hours on the site you recommended but I think you're right, I need even more basic (Python) to get started. I don't have a lot of application for coding language other than these indicators which I don't plan to do much of but I would like to have the ability to modify and occasionally create. The indicator I'm working toward with you is one I've wanted to do for a long time and I actually learn best doing hands on type application so I really appreciate your willingness to walk me...
Ignored
Hi,
If you want to learn python's basics the this is a good site to start.
Your goal needs understanding of programming basics, else you will be confused of what you need to do.
Actually you need to create design of your program, that way it will be easier to code(also requires basic knowledge).
Next step should be moving average creating. Create a function/s where you will do all this stuff.
Again , before moving forward recommend learning basics.
Good luck!
Know thyself
 
 
  • Post #17,808
  • Quote
  • Feb 14, 2017 1:30am Feb 14, 2017 1:30am
  •  Fatso
  • | Joined Feb 2017 | Status: Member | 110 Posts
Good Day
I would like to request a coder to code for me an EA that opens a SELL order if the previous H1 candle was a SELL. The SL will be the high of the previous H1 candle and TP will be as follows...close half of the order at 10pips and move to BE and trail the rest so on
For BUY the opposite...open BUY order if previous H1 candle was a BUY. SL will be the low of the previous H1 candle and TP will be as follows...close half at 10 pips and move to BE and trail the rest
Attached Image
 
 
  • Post #17,809
  • Quote
  • Feb 14, 2017 6:11am Feb 14, 2017 6:11am
  •  nadiakhan
  • | Joined Feb 2017 | Status: Member | 18 Posts
Quoting tooslow
Disliked
{quote} tooslow1.png;2184233 buttons indicator. {image}
Ignored
sir can you share with us this indicator.
LEARN THE PROCESS,FOLLOW THE PROCESS
 
 
  • Post #17,810
  • Quote
  • Feb 14, 2017 7:27am Feb 14, 2017 7:27am
  •  Leontarion
  • | Joined Feb 2017 | Status: Junior Member | 4 Posts
Can you add buffers for arrows to ccichanner indicator?
Attached File
File Type: mq4 CCIchannel_arr.mq4   8 KB | 234 downloads
 
 
  • Post #17,811
  • Quote
  • Feb 14, 2017 7:30am Feb 14, 2017 7:30am
  •  Leontarion
  • | Joined Feb 2017 | Status: Junior Member | 4 Posts
Can you modify this EA to trade only per closed bar?
Attached File
File Type: mq4 hlh4_tick_trailingstop_nmc.mq4   18 KB | 225 downloads
 
1
  • Post #17,812
  • Quote
  • Feb 14, 2017 4:17pm Feb 14, 2017 4:17pm
  •  kaola508
  • | Joined May 2011 | Status: Member | 31 Posts
Can you add divergence Popup message function for this TDI indicator?Thank you.
Attached File
File Type: mq4 tdi_rt_alerts__divergence.mq4   19 KB | 249 downloads
 
 
  • Post #17,813
  • Quote
  • Feb 14, 2017 5:55pm Feb 14, 2017 5:55pm
  •  LuizSchiavi
  • Joined Aug 2015 | Status: Member | 636 Posts
Hello everyone,

I´m looking for the indicator:

> Forex-Enigma

Someone have?
Can share?
Have tested? work?
Attached Image (click to enlarge)
Click to Enlarge

Name: Forex-enigma-free.jpg
Size: 398 KB
 
 
  • Post #17,814
  • Quote
  • Feb 14, 2017 8:07pm Feb 14, 2017 8:07pm
  •  hibra68
  • Joined Apr 2015 | Status: Member | 1,101 Posts
Can someone help me out??

I have an indicator called snergytradesignal which gives alerts when there is a buy or a sell signal.

The problem is I can only see and hear this alert on my pc Mt4.

I have linked pasted my metaquotesId from my phone to the pc's mt4 and tested it and I was able to receive the test push notification on my phone but I cant get the alert from the snergytradesignal.

Please help me anyone.

thanks.
Attached Files
File Type: mq4 Synergy_TradeSignal.mq4   26 KB | 432 downloads
File Type: ex4 Synergy_TradeSignal.ex4   47 KB | 316 downloads
 
1
  • Post #17,815
  • Quote
  • Feb 14, 2017 8:47pm Feb 14, 2017 8:47pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,848 Posts
Quoting hibra68
Disliked
Can someone help me out?? I have an indicator called snergytradesignal which gives alerts when there is a buy or a sell signal. The problem is I can only see and hear this alert on my pc Mt4. I have linked pasted my metaquotesId from my phone to the pc's mt4 and tested it and I was able to receive the test push notification on my phone but I cant get the alert from the snergytradesignal. Please help me anyone. thanks. {file} {file}
Ignored
Unfortunately it is decompiled code so it is unlikely anyone will help you with this.
Trade what you see not what you hope
 
 
  • Post #17,816
  • Quote
  • Feb 14, 2017 8:56pm Feb 14, 2017 8:56pm
  •  hibra68
  • Joined Apr 2015 | Status: Member | 1,101 Posts
Quoting cja
Disliked
{quote} Unfortunately it is decompiled code so it is unlikely anyone will help you with this.
Ignored
I dunno what decompiled means but I have the mq4 version that might help
 
 
  • Post #17,817
  • Quote
  • Feb 14, 2017 9:11pm Feb 14, 2017 9:11pm
  •  4xtrader78
  • | Joined Jan 2017 | Status: Member | 12 Posts
Quoting kaola508
Disliked
Can you add divergence Popup message function for this TDI indicator?Thank you. {file}
Ignored


here alerts and all, i even had arrows added for the divergence part
Attached Files
File Type: ex4 tdi_rt_alerts_divergence3.ex4   52 KB | 224 downloads
File Type: mq4 tdi_rt_alerts_divergence3.mq4   52 KB | 291 downloads
 
2
  • Post #17,818
  • Quote
  • Feb 14, 2017 10:01pm Feb 14, 2017 10:01pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,848 Posts
Quoting hibra68
Disliked
{quote} I dunno what decompiled means but I have the mq4 version that might help
Ignored
Sorry the mq4 that you posted that is the end result of the ex4 being decompiled so it will not help.
Unfortunately many people such as yourself don't know how to recognize decompiled code and there is a lot of it out there and sadly many have also bought the software off unscrupulous people on the net who rename the software and sell it as their own.
Decompiled, hacked, educated, are some of the terms used for this software and it basically means someone took something that was not theirs to take. From my experience anything decompiled is generally older code anyway and much of it does not work properly on the new MT4 because it uses out dated code which is why we get so many requests from members wanting decompiled code fixed. I hope this may have helped answer you request.
Trade what you see not what you hope
 
 
  • Post #17,819
  • Quote
  • Edited Feb 15, 2017 1:21am Feb 14, 2017 10:10pm | Edited Feb 15, 2017 1:21am
  •  Sixer
  • Joined Nov 2008 | Status: Member | 1,757 Posts
LuizSchiavi,

are you really want to use KD stuff ?

http://fx-mart.net/forex-enigma.html

Sixer
 
 
  • Post #17,820
  • Quote
  • Feb 14, 2017 11:08pm Feb 14, 2017 11:08pm
  •  hibra68
  • Joined Apr 2015 | Status: Member | 1,101 Posts
Quoting cja
Disliked
{quote} Sorry the mq4 that you posted that is the end result of the ex4 being decompiled so it will not help. Unfortunately many people such as yourself don't know how to recognize decompiled code and there is a lot of it out there and sadly many have also bought the software off unscrupulous people on the net who rename the software and sell it as their own. Decompiled, hacked, educated, are some of the terms used for this software and it basically means someone took something that was not theirs to take. From my experience anything decompiled...
Ignored
Alright thanks,

I got it now.

If anyone has a new version of this indicator please post it here.
Thanks.
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 889890Page 891892893 2689
    • 1 Page 891 2689
30 traders viewing now, 11 are members:
avidtrader4
,
Invisible
,
Invisible
,
ArashRad
,
martetango
,
Invisible
,
Tjaart1
,
John4y
,
Drive777
,
koredee
,
bjork
  • 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 / ©2022