• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:39pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:39pm
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,077
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 26772678Page 267926802681 2692
  • 1 Page 2679 2692
  •  
  • Post #53,561
  • Quote
  • Aug 5, 2022 8:39pm Aug 5, 2022 8:39pm
  •  siglot
  • | Joined Sep 2020 | Status: Member | 38 Posts | Online Now
Quoting BlueRain
Disliked
{quote} Here, you have it. You can turn on/off price labels from option. {file} {image}
Ignored
Great help sir, you're far too kind.

I noticed this with the indicator, although i might be wrong but i think it should behave like the CandleTime indicator i have attached below.

Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 109 KB
Attached File
File Type: mq4 CandleTime (P4L).mq4   33 KB | 38 downloads
I Live To Learn
 
 
  • Post #53,562
  • Quote
  • Edited at 10:16pm Aug 5, 2022 9:55pm | Edited at 10:16pm
  •  SJr-BRZ
  • | Joined Sep 2021 | Status: Member | 4 Posts
Goodnight.
I have an indicator in .mq5 and I need it to work in .mq4.
I changed the name extension to .mq4, but when compiled, it generated 7 errors.
I don't have, coding/programming experience.
Could someone fix these errors generated when compiling to .ex4?
Follow the .mq5 and .mq4 source codes with compilation errors.
If you know of any indicator in .mq4 / .ex4 with these functions or with more functions than those in this indicator, please indicate which one.


ORIGINAL CODE:

===========================================================
//+------------------------------------------------------------------+
//| tabajara2.mq5 |
//| Copyright 2018, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Patrick Corrêa Muniz"
#property version "1.01"
#property indicator_chart_window
#property indicator_buffers 7
#property indicator_plots 2
//--- plot media
#property indicator_label1 "media"
#property indicator_type1 DRAW_COLOR_LINE
#property indicator_color1 clrRed,clrForestGreen,clrYellow,C'0,0,0',C'0,0,0',C'0,0,0',C'0,0,0',C'0,0,0'
#property indicator_style1 STYLE_SOLID
#property indicator_width1 2
//--- plot candles
#property indicator_label2 "candles"
#property indicator_type2 DRAW_COLOR_CANDLES
#property indicator_color2 clrRed,clrForestGreen,clrBlack,clrGray,C'0,0,0',C'0,0,0',C'0,0,0',C'0,0,0'
#property indicator_style2 STYLE_SOLID
#property indicator_width2 1
//--- indicator buffers
double mediaBuffer[];
double mediaColors[];
double candlesOpenBuffer[];
double candlesHighBuffer[];
double candlesLowBuffer[];
double candlesCloseBuffer[];
double candlesColors[];
double mediavalue[];
int mediaHandle;
input int PeriodoMedia=20;
input ENUM_MA_METHOD TipoMedia=MODE_SMA;
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int OnInit()
{
//--- indicator buffers mapping
SetIndexBuffer(0,mediaBuffer,INDICATOR_DATA);
SetIndexBuffer(1,mediaColors,INDICATOR_COLOR_INDEX);
SetIndexBuffer(2,candlesOpenBuffer,INDICATOR_DATA);
SetIndexBuffer(3,candlesHighBuffer,INDICATOR_DATA);
SetIndexBuffer(4,candlesLowBuffer,INDICATOR_DATA);
SetIndexBuffer(5,candlesCloseBuffer,INDICATOR_DATA);
SetIndexBuffer(6,candlesColors,INDICATOR_COLOR_INDEX);
mediaHandle=iMA(_Symbol,_Period,PeriodoMedia,0,TipoMedia,PRICE_CLOSE);
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
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 start;
if(prev_calculated==0)
{
start=1;
}else{
start=prev_calculated-1;
}
CopyBuffer(mediaHandle,0,0,rates_total,mediaBuffer);
CopyBuffer(mediaHandle,0,0,rates_total,mediavalue);
for(int i=start; i<rates_total; i++)
{
DefineColorMedia(mediavalue,i,close);
DefineColorCandle(mediavalue,i,close,open,high,low);
}
return(rates_total);
}
//+------------------------------------------------------------------+
//|Colors
//| 0 = Red
//| 1 = Green
//| 2 = yellow |
//+------------------------------------------------------------------+
void DefineColorMedia(double &mediavalue[],int index,const double &close[])
{
bool fechamentoMaiorQueMediaeMediaAscendente=(close[index]>mediavalue[index] && mediavalue[index]>mediavalue[index-1]);
bool fechamentoMenorQueMediaeMediaDescendente=(close[index]<mediavalue[index] && mediavalue[index]<mediavalue[index-1]);
if(fechamentoMaiorQueMediaeMediaAscendente)
{
mediaColors[index]=1;
}else if(fechamentoMenorQueMediaeMediaDescendente) {
mediaColors[index]=0;
}else{
mediaColors[index]=2;
}
}
//+------------------------------------------------------------------+
//|Colors
//|0 = Red
//|1 = Green
//|2 = Black
//|3 = Gray |
//+------------------------------------------------------------------+
void DefineColorCandle(double &mediavalue[],int index,const double &close[],const double &open[],const double &high[],const double &low[])
{
DefineBuffersCandle(index,close,open,high,low);
bool candleDeForcaMediaAscendente=close[index]>close[index-1] && close[index]>mediavalue[index] && mediavalue[index]>mediavalue[index-1];
bool candleDeCorrecaoMediaAscendente=close[index]<close[index-1] && close[index]>mediavalue[index] && mediavalue[index]>mediavalue[index-1];
bool candleDeForcaMediaDescendente=close[index]<close[index-1] && close[index]<mediavalue[index] && mediavalue[index]<mediavalue[index-1];
bool candleDeCorrecaoMediaDescendente=close[index]>close[index-1] && close[index]<mediavalue[index] && mediavalue[index]<mediavalue[index-1];
if(candleDeForcaMediaAscendente)
{
candlesColors[index]=1;
}else if(candleDeCorrecaoMediaAscendente){
candlesColors[index]=2;
}else if(candleDeForcaMediaDescendente){
candlesColors[index]=0;
}else if(candleDeCorrecaoMediaDescendente){
candlesColors[index]=3;
}
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void DefineBuffersCandle(int index,const double &close[],const double &open[],const double &high[],const double &low[])
{
candlesOpenBuffer[index] = open[index];
candlesHighBuffer[index] = high[index];
candlesLowBuffer[index]=low[index];
candlesCloseBuffer[index]=close[index];
}
//+------------------------------------------------------------------+

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








Website:
https://www-mql5-com.translate.goog/..._x_tr_pto=wapp
Attached Images (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 64 KB Click to Enlarge

Name: screenshot.png
Size: 20 KB Click to Enlarge

Name: screenshot.png
Size: 94 KB Click to Enlarge

Name: screenshot.png
Size: 84 KB
Click to Enlarge

Name: screenshot.png
Size: 42 KB
Attached Files
File Type: mq4 tabajaraclassico1.01.mq4   12 KB | 61 downloads
File Type: mq5 tabajaraclassico1.01.mq5   12 KB | 53 downloads
 
 
  • Post #53,563
  • Quote
  • Aug 6, 2022 4:26am Aug 6, 2022 4:26am
  •  kennyxox
  • | Joined Feb 2017 | Status: Member | 176 Posts
Quoting jeanlouie
Disliked
{quote} - added all tfs - options to use any/all tf {file}
Ignored
Jeanlouie,
Can this indi add in history so that old line will still be available with history setting? thanks
 
 
  • Post #53,564
  • Quote
  • Aug 6, 2022 6:05am Aug 6, 2022 6:05am
  •  fred01
  • | Joined Oct 2007 | Status: Member | 29 Posts
Quoting mntiwana
Disliked
{quote} "ehlers fisher transform 2" Keep in mind,results are always different comparing to repainting and non repainting (nrp) indicators example picture the lowest sw {image} {image}{image} {file}
Ignored
Thanks man. You are one good man. I appreciate.
The best indicators are trader's knowledge and state of mind.
 
 
  • Post #53,565
  • Quote
  • Aug 6, 2022 10:00am Aug 6, 2022 10:00am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,304 Posts | Online Now
Quoting kennyxox
Disliked
{quote} Jeanlouie, Can this indi add in history so that old line will still be available with history setting? thanks
Ignored
It's not mine and I wont make further changes to it, you can use a regular mtf fractal to see history.
 
1
  • Post #53,566
  • Quote
  • Aug 6, 2022 10:05am Aug 6, 2022 10:05am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,304 Posts | Online Now
Quoting gcancino
Disliked
...How can I archieve something like that? The subpanel/window/dialog is opened at button clicked.
Ignored
How - when a certain button is clicked, show another panel.
If you don't find that helpful, then keep in mind you've given no info about what you've currently got ie if you can already make one panel, then you can make another.
 
 
  • Post #53,567
  • Quote
  • Aug 6, 2022 1:10pm Aug 6, 2022 1:10pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 983 Posts
Quoting siglot
Disliked
{quote} Great help sir, you're far too kind. I noticed this with the indicator, although i might be wrong but i think it should behave like the CandleTime indicator i have attached below. {image} {file}
Ignored
Noted. It was missing ChartEvent handling.
But, I will make change to TEXT and update once market opens and tested.
 
2
  • Post #53,568
  • Quote
  • Aug 6, 2022 3:32pm Aug 6, 2022 3:32pm
  •  clintlala
  • | Joined Feb 2019 | Status: Member | 10 Posts
Hello everyone,

Can someone please help me add push notification alert
also email if possible.

Thanks
Attached File
File Type: mq4 FMCBR (2).mq4   14 KB | 67 downloads
 
 
  • Post #53,569
  • Quote
  • Aug 6, 2022 3:56pm Aug 6, 2022 3:56pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,304 Posts | Online Now
Quoting clintlala
Disliked
Hello everyone, Can someone please help me add push notification alert also email if possible. Thanks {file}
Ignored
Email and push option added.
Attached File
File Type: mq4 FMCBR (2)_mod.mq4   15 KB | 116 downloads
 
 
  • Post #53,570
  • Quote
  • Aug 6, 2022 4:01pm Aug 6, 2022 4:01pm
  •  clintlala
  • | Joined Feb 2019 | Status: Member | 10 Posts
Quoting jeanlouie
Disliked
{quote} Email and push option added. {file}
Ignored
Thank you so much.
 
 
  • Post #53,571
  • Quote
  • Edited at 5:55pm Aug 6, 2022 5:36pm | Edited at 5:55pm
  •  keyman.
  • | New Member | Status: I'm MM as my trades r always losing | 68 Posts
Hello. Please help me. I want an EA. It should work like that: It opens only BUY trades.
If the price is in profit, it doesn't open a trade on a new H1 candle, but let the rest run, as it is in the profit zone.
If the price is in the loss zone, EA opens a new trade every H1 candle (during being in the loss) with the same lot.
Live example is ForexPipKiller EA. But it's with lot increasing while opening a trade in the loss zone, but I don't want it. Remove martingale. Thanks in advance.
Attached File
File Type: ex4 Forex buy PiP Killer._fix.ex4   32 KB | 48 downloads
Adjust everything for yourself, but with the automation of this.
IgorFX's Session All Time Return: 446.5% NASDAQ
 
 
  • Post #53,572
  • Quote
  • Aug 7, 2022 2:39am Aug 7, 2022 2:39am
  •  cpips
  • Joined Aug 2016 | Status: Member | 62 Posts
Quoting BlueRain
Disliked
{quote} Minor bug fix - latest box drawing was not cleaned if pattern changed. {file}
Ignored
Just a simple test.
From 3 Aug to 5 Aug
TF=M30
Exit @opposite signal
has a great potential if combined with other indicators

thank you BlueRain.
Attached Image (click to enlarge)
Click to Enlarge

Name: From 3 to 5 Aug.png
Size: 20 KB
Attached File
File Type: mq4 BR RailRoad Patterns Adv.mq4   38 KB | 125 downloads
 
 
  • Post #53,573
  • Quote
  • Aug 7, 2022 8:02am Aug 7, 2022 8:02am
  •  batnyam
  • | Joined Feb 2020 | Status: Member | 7 Posts
Hello guys,

I will create EA based on your strategy. contact me.
 
 
  • Post #53,574
  • Quote
  • Aug 7, 2022 10:22am Aug 7, 2022 10:22am
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,047 Posts
Quoting jeanlouie
Disliked
{quote} How - when a certain button is clicked, show another panel. If you don't find that helpful, then keep in mind you've given no info about what you've currently got ie if you can already make one panel, then you can make another.
Ignored
Please help with post 53546
 
 
  • Post #53,575
  • Quote
  • Aug 7, 2022 10:32am Aug 7, 2022 10:32am
  •  ozkanim
  • | Joined Oct 2020 | Status: Member | 12 Posts
Quoting mntiwana
Disliked
{quote} "ehlers fisher transform 2" Keep in mind,results are always different comparing to repainting and non repainting (nrp) indicators example picture the lowest sw {image} {image}{image} {file}
Ignored
Hello. I would be very happy if you share the indicators here. thank you
 
 
  • Post #53,576
  • Quote
  • Aug 7, 2022 10:35am Aug 7, 2022 10:35am
  •  ozkanim
  • | Joined Oct 2020 | Status: Member | 12 Posts
Quoting batnyam
Disliked
Hello guys, I will create EA based on your strategy. contact me.
Ignored
Hello. I have an idea. Do you charge fees?
 
 
  • Post #53,577
  • Quote
  • Aug 7, 2022 12:24pm Aug 7, 2022 12:24pm
  •  kenshin2811
  • | Joined Jan 2021 | Status: Member | 8 Posts
Hello I was wondering if someone would be able to add a toggle button to this indicator. If so can you also make it possible so that we can choose what window we want the button to be on.
Attached File
File Type: mq4 show123v2.mq4   56 KB | 60 downloads
 
 
  • Post #53,578
  • Quote
  • Aug 7, 2022 1:04pm Aug 7, 2022 1:04pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,304 Posts | Online Now
Quoting Slingshots1
Disliked
Hello jeanlouie, please kindly help me in fixing the attached indicator with reversal alert for each vertical line tagged (REVERSAL SOON CANDLE CLOSE N0.6)....ETC, same goes for nos 11 and 17...
Ignored
I wont get around to it. It's a 4hr chart, you have 4hrs to check in.
 
 
  • Post #53,579
  • Quote
  • Aug 7, 2022 1:16pm Aug 7, 2022 1:16pm
  •  klm1011
  • Joined Feb 2020 | Status: Member | 2,299 Posts
hi all respected traders
anyone got Heikin Ashi smooth mtf indi ?
thanks
 
 
  • Post #53,580
  • Quote
  • Aug 7, 2022 1:21pm Aug 7, 2022 1:21pm
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,047 Posts
Quoting jeanlouie
Disliked
{quote} I wont get around to it. It's a 4hr chart, you have 4hrs to check in.
Ignored
Thanks
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 26772678Page 267926802681 2692
    • 1 Page 2679 2692
10 traders viewing now, 5 are members:
siglot
,
pupulidopo
,
ThiagoMattei
,
mmurat
,
ykpuffy07
  • 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