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

I will code your pivot EAs for no charge 20 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,951
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 26192620Page 262126222623 2976
  • 1 Page 2621 2976
  •  
  • Post #52,401
  • Quote
  • May 27, 2022 1:36am May 27, 2022 1:36am
  •  Lewie27
  • | Joined May 2022 | Status: Junior Member | 2 Posts
Hello guys. Anyone here can make a simple MT5 EA or Script to close all open trades with a single click or dragging a script? Thanks
 
 
  • Post #52,402
  • Quote
  • May 27, 2022 5:12am May 27, 2022 5:12am
  •  MwlRCT
  • Joined Aug 2019 | Status: Member | 126 Posts
Quoting ntk98
Disliked
{quote} Cold you pls tell what is the name of this ea in your picture, or share it and does it tell how determine CM, EM, IM? It must be something created in the era before 2012?
Ignored
Download Link: https://www.forexfactory.com/thread/...17#post9752017
 
1
  • Post #52,403
  • Quote
  • May 27, 2022 8:19am May 27, 2022 8:19am
  •  Polleczko
  • | Joined Jun 2011 | Status: Member | 71 Posts
Quoting Polleczko
Disliked
Hi Guys, would it be possible to add alerts to ASC Trend Indi? MT4/Email/Mobile if possible. Thanks! Best regards Paul {file}
Ignored

Bumping this one.

Maybe anyone got some free time
Attached File(s)
File Type: mq4 ASCTrend1i.mq4   4 KB | 101 downloads
 
 
  • Post #52,404
  • Quote
  • May 27, 2022 9:04am May 27, 2022 9:04am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,494 Posts
Quoting fxganstah
Disliked
{quote}...The "Make it Horizontal" indicator that was previously available on the marketplace was quite simple. Use your normal trendline tool to draw a line that you want (Step 1 in pic) and then press the hotkey (in this case it was "h") and the line goes straight...
Ignored
- were you able to move both ends of the tline and it will use the price of the end you moved? or could you only move one end?
- did it apply to all tlines that are selected or only what you've just moved?
 
 
  • Post #52,405
  • Quote
  • May 27, 2022 11:59am May 27, 2022 11:59am
  •  apakhabar
  • | Joined May 2022 | Status: Junior Member | 1 Post
Hi Guys
Currently i run a EA that will apply Martingale layer as below (ex4 file)
- First order 0.01
- Second order 0.02
- Third order 0.03
- Fourth order 0.05

The martingale will be triggered when the trade is floating loss. There is no additional setting on the EA to stop martingale layer.

Can anyone create another EA, so that it stop the EA create third order (0.03) and above? Meaning the EA can only create 0.01 and 0.02 at most.

Is this possible? Thanks
 
 
  • Post #52,406
  • Quote
  • May 27, 2022 12:13pm May 27, 2022 12:13pm
  •  STC1447
  • | Joined May 2022 | Status: Junior Member | 3 Posts
Is there anyone who can help me with those Codes?
It's using Fibo retracement tools and SMA.
1. These codes are not working in Tester
2. I want to hide the SMA from the chart.
3. The Fibo is counting some previous candles to draw Fibo Levels but I want to draw it from the previous (1/7)day's high and Low that's all

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Yellow
//--
#property indicator_width1 1
#property indicator_width2 1
//---
extern string FiboRetLevels="Copyright ?";
double cntrBuf[]; // center line
double smmaBuf[]; // cons line
int perio=20;
//--
string CRight;
//---
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
CRight="Copyright ?
//--- indicator buffers mapping
IndicatorBuffers(2);
//---
SetIndexBuffer(0,cntrBuf);
SetIndexBuffer(1,smmaBuf);
//--- indicator line drawing
//--- center line SMA 20 Price Median
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,EMPTY,Red);
//-- SMMA 20 Price Median
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,EMPTY,Yellow);
//--- name for DataWindow and indicator subwindow label
SetIndexLabel(0,"Center");
SetIndexLabel(1,"Cons");
//---
SetIndexDrawBegin(0,perio);
SetIndexDrawBegin(1,perio);
//--
IndicatorShortName("FRL");
IndicatorDigits(Digits);
//--
//--- initialization done
return(0);
}
//---
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
//----
int deinit()
{
//----
for(int d=0; d<7; d++)
{
ObjectDelete("FiboLineLevels_"+d);
ObjectDelete("FiboLineLabels_"+d);
ObjectDelete("FiboLineLimit_"+d);
ObjectDelete("FiboLabelPrice_"+d);
}
//---
ObjectDelete("FiboLineLimit6");
ObjectDelete("FiboLineLimit0");
ObjectDelete("FiboLineCross1");
ObjectDelete("FiboLineCross2");
ObjectDelete("FiboStarCross");
//----
return(0);
}
//----
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
//---
int start()
//----
{
//------
if(FiboRetLevels!=CRight) return(0);
//---
int counted_bars=IndicatorCounted();
//---
if(counted_bars<0) return(-1);
//----
if(counted_bars>0) counted_bars--;
int pos=Bars-counted_bars;
if(counted_bars==0) pos-=1+61;
//----
int i,f;
double divFL=80.9;
double maxHi[],minLo[];
double Lvl[]={0.0,23.6,38.2,50.0,61.8,80.9,100.0};
datetime Cor1,Cor2,CorC,CorL;
datetime bartime[];
//--- Set the arrays as a series
ArraySetAsSeries(Lvl,false);
ArraySetAsSeries(maxHi,true);
ArraySetAsSeries(minLo,true);
ArraySetAsSeries(bartime,true);
//--- Set Last error value to Zero
ResetLastError();
//----
//--- prepare the maxHi[] and minLo[] arrays
ArrayResize(maxHi,Bars);
ArrayResize(minLo,Bars);
//--
for(i=pos; i>=0; i--)
{
//---
int ind1=iHighest(NULL,0,MODE_HIGH,77,i);
int ind2=iLowest(NULL,0,MODE_LOW,77,i);
if ((ind1>=0)&& (ind1<Bars)) maxHi[i]=High[ind1];
if ((ind2>=0)&& (ind2<Bars)) minLo[i]=Low[ind2];
Cor1=Time[i];
Cor2=Time[i+60];
CorL=Time[i+61];
CorC=Time[i+30];
}
//--
RefreshRates();
//----
//--- main cycle indicator iteration --//
//---
for(i=pos; i>=0; i--)
{
//--- center line SMA 20
cntrBuf[i]=iMA(NULL,0,perio,0,MODE_SMA,PRICE_MEDIAN,i);
//-- SMMA line
smmaBuf[i]=iMA(NULL,0,perio,0,MODE_SMMA,PRICE_MEDIAN,i);
//---
//----- Time to create the Fibonacci object
//---
if(i==0)
{
for(f=0; f<7; f++)
{
ObjectDelete("FiboLineLevels_"+f);
ObjectDelete("FiboLineLabels_"+f);
ObjectDelete("FiboLineLimit_"+f);
ObjectDelete("FiboLabelPrice_"+f);
}
//--
ObjectDelete("FiboLineLimit6");
ObjectDelete("FiboLineLimit0");
ObjectDelete("FiboLineCross1");
ObjectDelete("FiboLineCross2");
ObjectDelete("FiboStarCross");
//---
for(f=0; f<7; f++)
{
if(ObjectFind("FiboLineLevels_"+f)<0)
{
//--- Create Fibonacci Retracement Levels
ObjectCreate("FiboLineLevels_"+f,OBJ_TREND,0,Cor1,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[f]),
Cor2,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[f]));
//--- level value
ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_COLOR,clrGold);
ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_RAY_LEFT,false);
ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_RAY_RIGHT,false);
if(Lvl[f]==80.9) {ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_STYLE,STYLE_DASHDOT);}
else {ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_STYLE,STYLE_SOLID);}
//--
ObjectCreate(0,"FiboLineLabels_"+f,OBJ_TEXT,0,CorL,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[f]));
ObjectSetInteger(0,"FiboLineLabels_"+f,OBJPROP_COLOR,clrSnow);
ObjectSetString(0,"FiboLineLabels_"+f,OBJPROP_TEXT,DoubleToStr(Lvl[f],1));
ObjectSetString(0,"FiboLineLabels_"+f,OBJPROP_FONT,"Bodoni MT Black");
ObjectSetInteger(0,"FiboLineLabels_"+f,OBJPROP_FONTSIZE,8);
ObjectSetInteger(0,"FiboLineLabels_"+f,OBJPROP_ANCHOR,ANCHOR_RIGHT);
//--
ObjectCreate(0,"FiboLineLimit_"+f,OBJ_TEXT,0,Cor2,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[f]));
ObjectSetString(0,"FiboLineLimit_"+f,OBJPROP_TEXT,CharToStr(119));
ObjectSetString(0,"FiboLineLimit_"+f,OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboLineLimit_"+f,OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboLineLimit_"+f,OBJPROP_COLOR,clrDeepPink);
ObjectSetInteger(0,"FiboLineLimit_"+f,OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ObjectCreate(0,"FiboLabelPrice_"+f,OBJ_ARROW_RIGHT_PRICE,0,Cor2,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[f]));
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_COLOR,clrSnow);
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_STYLE,STYLE_SOLID);
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_WIDTH,1);
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_ANCHOR,ANCHOR_LEFT);
//--
ObjectCreate("FiboLineCross1",OBJ_CHANNEL,0,Cor2,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[0]),
Cor1,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[6]));
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_COLOR,clrRed);
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_RAY_LEFT,false);
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_RAY_RIGHT,false);
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_STYLE,STYLE_DOT);
//--
ObjectCreate("FiboLineCross2",OBJ_CHANNEL,0,Cor1,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[0]),
Cor2,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[6]));
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_COLOR,clrRed);
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_RAY_LEFT,false);
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_RAY_RIGHT,false);
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_STYLE,STYLE_DOT);
//--
ObjectCreate(0,"FiboLineLimit6",OBJ_TEXT,0,Cor1,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[6]));
ObjectSetString(0,"FiboLineLimit6",OBJPROP_TEXT,CharToStr(119));
ObjectSetString(0,"FiboLineLimit6",OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboLineLimit6",OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboLineLimit6",OBJPROP_COLOR,clrDeepPink);
ObjectSetInteger(0,"FiboLineLimit6",OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ObjectCreate(0,"FiboLineLimit0",OBJ_TEXT,0,Cor1,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[0]));
ObjectSetString(0,"FiboLineLimit0",OBJPROP_TEXT,CharToStr(119));
ObjectSetString(0,"FiboLineLimit0",OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboLineLimit0",OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboLineLimit0",OBJPROP_COLOR,clrDeepPink);
ObjectSetInteger(0,"FiboLineLimit0",OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ObjectCreate(0,"FiboStarCross",OBJ_TEXT,0,CorC,minLo[i]+((maxHi[i]-minLo[i])/divFL*Lvl[3]));
ObjectSetString(0,"FiboStarCross",OBJPROP_TEXT,CharToStr(181));
ObjectSetString(0,"FiboStarCross",OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboStarCross",OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboStarCross",OBJPROP_COLOR,clrAqua);
ObjectSetInteger(0,"FiboStarCross",OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ChartRedraw(0);
Sleep(1000);
RefreshRates();
//----
}
//--
else // if(ObjectFind("FiboLineLevels_"+f)>0) //
{
//--- ObjectMove Fibonacci Retracement Levels
ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_COLOR,clrGold);
ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_RAY_LEFT,false);
ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_RAY_RIGHT,false);
if(Lvl[f]==80.9) {ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_STYLE,STYLE_DASHDOT);}
else {ObjectSetInteger(0,"FiboLineLevels_"+f,OBJPROP_STYLE,STYLE_SOLID);}
//--
ObjectSetInteger(0,"FiboLineLabels_"+f,OBJPROP_COLOR,clrSnow);
ObjectSetString(0,"FiboLineLabels_"+f,OBJPROP_TEXT,DoubleToStr(Lvl[f],1));
ObjectSetString(0,"FiboLineLabels_"+f,OBJPROP_FONT,"Bodoni MT Black");
ObjectSetInteger(0,"FiboLineLabels_"+f,OBJPROP_FONTSIZE,8);
ObjectSetInteger(0,"FiboLineLabels_"+f,OBJPROP_ANCHOR,ANCHOR_RIGHT);
//--
ObjectSetString(0,"FiboLineLimit_"+f,OBJPROP_TEXT,CharToStr(119));
ObjectSetString(0,"FiboLineLimit_"+f,OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboLineLimit_"+f,OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboLineLimit_"+f,OBJPROP_COLOR,clrDeepPink);
ObjectSetInteger(0,"FiboLineLimit_"+f,OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_COLOR,clrSnow);
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_STYLE,STYLE_SOLID);
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_WIDTH,1);
ObjectSetInteger(0,"FiboLabelPrice_"+f,OBJPROP_ANCHOR,ANCHOR_LEFT);
//--
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_COLOR,clrRed);
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_RAY_LEFT,false);
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_RAY_RIGHT,false);
ObjectSetInteger(0,"FiboLineCross1",OBJPROP_STYLE,STYLE_DOT);
//--
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_COLOR,clrRed);
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_RAY_LEFT,false);
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_RAY_RIGHT,false);
ObjectSetInteger(0,"FiboLineCross2",OBJPROP_STYLE,STYLE_DOT);
//--
ObjectSetString(0,"FiboLineLimit6",OBJPROP_TEXT,CharToStr(119));
ObjectSetString(0,"FiboLineLimit6",OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboLineLimit6",OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboLineLimit6",OBJPROP_COLOR,clrDeepPink);
ObjectSetInteger(0,"FiboLineLimit6",OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ObjectSetString(0,"FiboLineLimit0",OBJPROP_TEXT,CharToStr(119));
ObjectSetString(0,"FiboLineLimit0",OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboLineLimit0",OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboLineLimit0",OBJPROP_COLOR,clrDeepPink);
ObjectSetInteger(0,"FiboLineLimit0",OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ObjectSetString(0,"FiboStarCross",OBJPROP_TEXT,CharToStr(181));
ObjectSetString(0,"FiboStarCross",OBJPROP_FONT,"Wingdings");
ObjectSetInteger(0,"FiboStarCross",OBJPROP_FONTSIZE,15);
ObjectSetInteger(0,"FiboStarCross",OBJPROP_COLOR,clrAqua);
ObjectSetInteger(0,"FiboStarCross",OBJPROP_ANCHOR,ANCHOR_CENTER);
//--
ChartRedraw(0);
Sleep(1000);
RefreshRates();
//----
}
//---
}
//--- End for(f)
}
//--- End if(i)
}
//--- End for(i)
//----- done
//-----
return(0);
}
//----- End start()
//+------------------------------------------------------------------+
 
 
  • Post #52,407
  • Quote
  • Edited 7:30pm May 27, 2022 12:41pm | Edited 7:30pm
  •  BlackArt
  • | Joined Feb 2021 | Status: Member | 56 Posts
Quoting jeanlouie
Disliked
{quote} BB_Candles_Outside - signals candles outside the bbands - option for either candle body, or full candle wick - option to ignore consecutive signals for a new signal - full alerts {image} {file}
Ignored
Hello Jeanlouie!

I've been testing your indicator for a past few days.
Great stuff! Thank you for sharing.

However, I'm having a small issue with it every day.
Please have a look at the picture below.
Sometimes dots are going mad

I don't use any other indicators beside yours and Bollinger Bands provided by MT4.
I did a small test.
I've run your indicator on two different MT4 platforms with different brokers.
Chart settings both the same.
One crashed, one did fine.
Reason why one of them crashes is because of the connection stability with the broker's server.
I've noticed that if the connection is stable, without any disconnections, indicator crashes moreless 8 hours from the last connection to the server.

Connection with my second broker isn't 100% stable and I get datacenter connecting failed error moreless every two hours for a few seconds.
Thanks to that your indicator is stable and never crashed so far.

Weird… so I was wondering if you could please look in to it and try to fix this bug ?
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM1.png
Size: 34 KB
< I collect pips to afford a Starship ride >
 
 
  • Post #52,408
  • Quote
  • May 27, 2022 2:20pm May 27, 2022 2:20pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,494 Posts
Quoting BlackArt
Disliked
{quote} ...
Ignored
Quote
Disliked
Sometime dots are going mad
- thanks for bringing it up, addressed, it would occur when multiple new candles are added in the history or switching to a new tf n missing history is updated

Quote
Disliked
two different MT4 platforms with different brokers. Chart settings both the same. One crashed, one did fine
- unless its replicable and also doesnt happen without the indicator, I have nothing to go on, also it's not doing any out of the ordinary
Attached File(s)
File Type: ex4 BB_Candles_Outside.ex4   19 KB | 115 downloads
 
1
  • Post #52,409
  • Quote
  • May 27, 2022 7:20pm May 27, 2022 7:20pm
  •  BlackArt
  • | Joined Feb 2021 | Status: Member | 56 Posts
Quoting jeanlouie
Disliked
{quote} {quote} - thanks for bringing it up, addressed, it would occur when multiple new candles are added in the history or switching to a new tf n missing history is updated {quote} - unless its replicable and also doesnt happen without the indicator, I have nothing to go on, also it's not doing any out of the ordinary {file}
Ignored
All right Jeanlouie. Thank you for your reply.
Any other advice to prevent it from happening beside switching TF?
< I collect pips to afford a Starship ride >
 
 
  • Post #52,410
  • Quote
  • Edited 10:01pm May 27, 2022 9:51pm | Edited 10:01pm
  •  lasttry
  • | Additional Username | Joined Nov 2021 | 83 Posts
Hi great coders,

DASHBOARD needed...

i think there is similar Dashboard to what i need some where on internet, but i cant find it now.... for saving time, it will be really helpful if you guys help me to code or point me to similar code that i can use and modify, to fit my needs...
I need some thing like below (please see image) :

Lets say that i want to know if a certain rule /pattern exists in a big candle like H4/D1 or bigger.... the rule (example only ) :
rule1 : EMA10 cross EMA50 upwards
rule2 : EMA10 cross EMA50 downwards

so, if rule1 is found for TF M1 ... then i check each candle of H4/D1 .., weather this rule is still inside Current last bar of H4/D1 or not , and then put to dashboard (example: aqua color) if it is exists in current last bar .... and if rule2 found for M1, do the same (red color). If no rule found, the color is black (or other default color).
Similar to TF M1 rule/pattern, i need also to put the result for TF M5,M15, ... etc ...

i think this is a kind to MTF dashboard that exists on the net ... but instead of using moving average, may be i can use Fractals also for this purpose ???

Edit: if possible, it is also has multi currency ability... so not only for EURUSD, but also for other pairs (28 paris ), or at least for Major pairs ...
Optional : with On/Off button ...

thank you very much in advance ...
Attached Image (click to enlarge)
Click to Enlarge

Name: Dashboard_example.jpg
Size: 32 KB
 
 
  • Post #52,411
  • Quote
  • May 27, 2022 10:01pm May 27, 2022 10:01pm
  •  Solar4Life20
  • | Joined Jul 2021 | Status: Junior Member | 6 Posts
Quoting Metatrader
Disliked
Hey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. Andi
Ignored
Hi, that would be Awesome. Do you know of already or would you be able to make a ea that when you enter a trade and set your stop, it calculates a 1.5 RR and closes the trade if the market reaches it. And if it could work for mt4 and even be able to understand bitcoin and work for that too. GOD bless and thanks for your time and work. Can't wait to hear a reply.
 
 
  • Post #52,412
  • Quote
  • May 27, 2022 10:47pm May 27, 2022 10:47pm
  •  lasttry
  • | Additional Username | Joined Nov 2021 | 83 Posts
Quoting lasttry
Disliked
Hi great coders, DASHBOARD needed... i think there is similar Dashboard to what i need some where on internet, but i cant find it now.... for saving time, it will be really helpful if you guys help me to code or point me to similar code that i can use and modify, to fit my needs... I need some thing like below (please see image) : Lets say that i want to know if a certain rule /pattern exists in a big candle like H4/D1 or bigger.... the rule (example only ) : rule1 : EMA10 cross EMA50 upwards rule2 : EMA10 cross EMA50 downwards so, if rule1 is found...
Ignored
Hi great coders,
i have some dashboard examples, but still have difficulties to code to what i need, especially the format (position) and because there is 2 rules inside each big TF ... still have no idea how to code until now ...
if you have idea, clue, or snippets or other information ... it will really helpful.
thanks again.
 
 
  • Post #52,413
  • Quote
  • May 28, 2022 2:02am May 28, 2022 2:02am
  •  STC1447
  • | Joined May 2022 | Status: Junior Member | 3 Posts
Hello,
Is there anyone who can code for me a simple grid system?
1. The Grid should start from a specific Price with a variable interval of 50-100 pips?
2. Verticle line start from a specific date with interval 7-14 days
 
 
  • Post #52,414
  • Quote
  • May 28, 2022 5:48am May 28, 2022 5:48am
  •  fluffyviolet
  • | Joined May 2022 | Status: Member | 8 Posts
Hello everyone,
I have a simple RENKO Strategy that looks pretty decent to trade manually, but now I will like to automate on Metatrader or even on ctrader
the concept is very simple:
-5 or 10 pip brick size
-when you see 2 green bricks, 1 red and 1 green again Open a BUY
-When you see 2 red, 1 green and 1 red again open a SELL

Close the position when a different color brick appear
 
 
  • Post #52,415
  • Quote
  • May 28, 2022 7:53am May 28, 2022 7:53am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,494 Posts
Quoting BlackArt
Disliked
{quote} ...Any other advice to prevent it from happening beside switching TF?
Ignored
You mean strange arrow locations are still happening?
 
 
  • Post #52,416
  • Quote
  • May 28, 2022 4:46pm May 28, 2022 4:46pm
  •  HLscalper
  • | Joined May 2022 | Status: Member | 11 Posts
Hey guys , I need some help . does anyone have any idea what this indicator is?
Attached Image (click to enlarge)
Click to Enlarge

Name: 9A07BE47-D37C-4579-B8A8-CDB1E6C8EBF1.jpeg
Size: 235 KB
 
 
  • Post #52,417
  • Quote
  • May 28, 2022 6:16pm May 28, 2022 6:16pm
  •  Samalin
  • Joined Apr 2017 | Status: Member | 663 Posts
Good day Coders and traders, please does anyone has indicator for false breakout? i cant find any on FF/forexstation i have exhausted my search
 
 
  • Post #52,418
  • Quote
  • May 28, 2022 7:04pm May 28, 2022 7:04pm
  •  ntk98
  • | Additional Username | Joined May 2022 | 43 Posts
Quoting Samalin
Disliked
Good day Coders and traders, please does anyone has indicator for false breakout? i cant find any on FF/forexstation i have exhausted my search
Ignored
IMO, I dont think there is one coded. If yes it would be just a very peculiar Pin bar.
The same for why there is no equity, or $$$_pool indicator anywhere because you would see it directly on the chart, at certain levels and in form as Pin bar, without need to waste CPU

Plus that is something you can not foresee, guess, predict, because t same place a fakeout develop, the candle could open in form as strong full body candle, which a half time turn in to a doji pin bar, then in the last 2 secs it develops in a blink to a much greater full body candle bar push price much further forth... that is fully in the hand of them who move the market
 
 
  • Post #52,419
  • Quote
  • Edited 10:40pm May 28, 2022 10:24pm | Edited 10:40pm
  •  Pathekiwi
  • | Joined Mar 2010 | Status: Member | 77 Posts
Is there any one willing to add MTF to this indicator for me?
Thougut I might ask one more time.

Kind regards
Attached File(s)
File Type: mq4 SSL fast nrp + atr bands.mq4   7 KB | 110 downloads
U won't really understand GRACE untill you fully realise you've been GRACED
 
 
  • Post #52,420
  • Quote
  • May 28, 2022 11:10pm May 28, 2022 11:10pm
  •  ddien
  • | Joined Dec 2014 | Status: Member | 90 Posts
looking indicator and a lot strategy can find many indicator https://www.abysse.co.jp/mt4-e/
 
1
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 26192620Page 262126222623 2976
    • 1 Page 2621 2976
25 traders viewing now, 8 are members:
vusingwenya
,
ffss
,
Invisible
,
Fiox89
,
siglot
,
Marcus05
,
Eagle-Eye
,
zeroline
  • 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