• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:29am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:29am
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,104
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 23852386Page 238723882389 2915
  • 1 Page 2387 2915
  •  
  • Post #47,721
  • Quote
  • Aug 9, 2021 9:31am Aug 9, 2021 9:31am
  •  Juliefa
  • | Commercial Member | Joined Aug 2021 | 268 Posts
hello everyone,

i am trying writing a very simple EA for MT4. i dont know yet if this is correct code. but i run it. only few result because of the conditions, i think.
i am just a newbie for this. hope good samaritan out there can help me improve this.
the conditions are in this script, but i want to add an AUTO_TAKE_PROFIT to close order for buy once the price will cross the Moving Average and close below MA, and auto take profit to close order for sell once the price will cross the Moving Average and close above MA.
and add aTRAIL STOPS too. please help. thank you.


double MA1 = iMA(NULL,0,period,0, MODE_EMA,PRICE_CLOSE,barshift);
double OpenPrice = Open[1];
double ClosePrice = Close[1];
double LowPrice = Low[1];
double HighPrice = High[1];
double OpenBuyOrder;
double OpenSellOrder;

if((HighPrice>MA1)&&(LowPrice<MA1))
{
OpenSellOrder=OrderSend(Symbol(),OP_SELL,Lots,Bid,2,0,0,MAGICNUM,0,Red);

}
else if((LowPrice<MA1)&&(HighPrice>MA1))
{
OpenBuyOrder=OrderSend(Symbol(),OP_BUY,Lots,Ask,2,0,0,MAGICNUM,0,Green);
}
 
 
  • Post #47,722
  • Quote
  • Aug 9, 2021 9:34am Aug 9, 2021 9:34am
  •  Jozec
  • | Joined Apr 2015 | Status: Member | 41 Posts
Quoting mntiwana
Disliked
{quote} "RSI_4xMTF_L50_Signals_v1.2" Even then not clear enough to me,may be i am dull enough - any way posting one multi 4X (multi instances) ver where a user can choose any value/period for any TF,it can be different periods for same TF and or same or different values for different TFs - color change possibility on zero cross and or not some alert and arrows included too {image}{image} {image}{image}{image} {file}
Ignored
You're smart, I think its me that have not been able to communicate properly. Was hoping to make the composite RSI behave like the other indicator since the repainting is very marginal and its MTF.
Thanks for the effort.
 
 
  • Post #47,723
  • Quote
  • Aug 9, 2021 9:39am Aug 9, 2021 9:39am
  •  Ronaldjkirby
  • | Joined Jul 2021 | Status: Member | 3 Posts
no shortage of requests in this thread if someone has a profitable strategy i can code it for you and free but i make over 100 ea now and nothing will make profit reliably
I think human still have to be involved not just rely on EA
 
 
  • Post #47,724
  • Quote
  • Aug 9, 2021 9:55am Aug 9, 2021 9:55am
  •  Juliefa
  • | Commercial Member | Joined Aug 2021 | 268 Posts
Quoting John4y
Disliked
{quote} If you attach a picture or screen print, I'll have a look to code what you're asking
Ignored
hi, thank you for your reply. in the backtest i dont see any result, and no appearance or execution from this EA code. please fix. thank you.

//==============================
this is the .mq4 file in Expert Advisor

//| Copyright 2021. JuliefaFX. |
//| https://disqus.com/by/nic_colito |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021. JuliefaFX."
#property link "https://disqus.com/by/nic_colito"
#property version "1.01"
#property strict
#include "10k-50k Common.mqh"


==============================================
this file is for common .mqh file in Expert Advisor

//| Copyright 2021. JuliefaFX. |
//| https://disqus.com/by/nic_colito |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021. JuliefaFX."
#property link "https://disqus.com/by/nic_colito"
#property version "1.01"
#property strict

#include "10k-50k Class.mqh" //get source functions from '10k-50k Class.mqh' file


//inputs indicators
// bollinger band
input int InpBandsPeriods = 20; //bband periods
input double InpBandsDeviation = 2.0; // bband deviation
input ENUM_APPLIED_PRICE InpBandsAppliedPrice = PRICE_CLOSE; //bband applied price

// moving average line
input int InpMaPeriods = 9; //ma periods
input ENUM_MA_METHOD InpMaMethod = MODE_SMA; //ma method
input ENUM_APPLIED_PRICE InpMaAppliedPrice = PRICE_CLOSE; //ma applied price

// the standard inputs
input double InpPLRatio = 1.0; // profit/loss ratio
input int InpMagicNumber0 = 210613; //magic number part1
int InpMagicNumber1 = InpMagicNumber0+1; //magic number
input string InpTradeComment = "10k-50k"; //trade comment
input double InpTradeVolume0 = 0.02; //volume per trade
input double InpTradeVolume1 = 0.01; //volume per trade

CCurrentTrade *CurrentTrade[2];

int OnInit()
{
CurrentTrade[0] = new CCurrentTrade(InpMaPeriods, InpMaMethod, InpMaAppliedPrice,
InpBandsPeriods, InpBandsDeviation, InpBandsAppliedPrice,
InpPLRatio, InpMagicNumber0, InpTradeComment, InpTradeVolume0, 0);
if (CurrentTrade[0].InitStatus()!=INIT_SUCCEEDED) return(CurrentTrade[0].InitStatus());

CurrentTrade[1] = new CCurrentTrade(InpMaPeriods, InpMaMethod, InpMaAppliedPrice,
InpBandsPeriods, InpBandsDeviation, InpBandsAppliedPrice,
InpPLRatio, InpMagicNumber1, InpTradeComment, InpTradeVolume1, 1);
if (CurrentTrade[1].InitStatus()!=INIT_SUCCEEDED) return(CurrentTrade[1].InitStatus());
return(INIT_SUCCEEDED);
}

void OnDeinit(const int reason) {

delete CurrentTrade[0];
delete CurrentTrade[1];
}

void OnTick() {
// 3 things to consider here
// 1. part 0 must not open a trade if there is a trade still open from part 0 or part 1
// 2. when part 0 opens a trade part 1 must also open a trade
// 3. when part 0 trade closes part 1 must move to break even

CurrentTrade[1].CheckIfClosed();
if (CurrentTrade[0].CurrentTicket()>0) { // there is an open ticket here
CurrentTrade[0].CheckIfClosed(); //update if the ticket was closed since last loop
if (CurrentTrade[0].CurrentTicket()==0) { // zero here means the ticket has just closed
CurrentTrade[1].SetBreakEven(); //move the other leg to break even
}
}

// now open if ther are no open tickets
if (NewBar() && CurrentTrade[0].CurrentTicket()==0 && CurrentTrade[1].CurrentTicket()==0) {
CurrentTrade[0].UpdateIndicators();
CurrentTrade[1].UpdateIndicators();
int condition = CurrentTrade[0].GetOpenCondition();
if (condition!=0) {
CurrentTrade[0].OpenOnCondition(condition);
CurrentTrade[1].OpenOnCondition(condition);
}
}
}
// just detect if a new bar has opened since the last time this was called
// this will ignore the current bar when the function is first called
bool NewBar() {

datetime now = iTime(Symbol(), Period(), 0);
static datetime prev = now;
if (prev==now) return(false);
prev = now;
return(true);
}


//===============================
this is the class .mqh file in Expert Advisor

//| Copyright 2021. JuliefaFX. |
//| https://disqus.com/by/nic_colito |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021. JuliefaFX."
#property link "https://disqus.com/by/nic_colito"
#property version "1.01"
#property strict


#ifdef __MQL5__
#include <Trade/Trade.mqh>
CTrade Trade;
CPositionInfo PositionInfo;
#endif

class CCurrentTrade {

private:

int mMaPeriods;
ENUM_MA_METHOD mMaMethod;
ENUM_APPLIED_PRICE mMaAppliedPrice;

int mBandsPeriods;
double mBandsDeviation;
ENUM_APPLIED_PRICE mBandsAppliedPrice;

double mPLRatio;
int mMagicNumber;
double mTradeComment;
double mTradeVolume;

int mLeg;

int mInitStatus;
ulong mCurrentTicket;


//indicator values - can now be set by a common function
double mMa;
double mBandUpper1;
double mBandUpper2;
double mBandLower1;
double mBandLower2;
double mBandMid;
double mClose1;
double mClose2;
double mBid;
double mAsk;

#ifdef __MQL5__
int HandleMa;
double BufferMa[];
int HandleBands;
double BufferBandsUpper[];
double BufferBandsLower[];
double BufferBandsMid[];
#endif

public:

int InitStatus() { return(mInitStatus); }
ulong CurrentTicket() { return(mCurrentTicket); }

public:
CCurrentTrade(int maPeriods, ENUM_MA_METHOD maMethod, ENUM_APPLIED_PRICE maAppliedPrice,
int bandsPeriods, double bandsDeviation, ENUM_APPLIED_PRICE bandsAppliedPrice,
double plRatio, int magicNumber, string tradeComment, double tradeVolume,
int leg) {

mMaPeriods = maPeriods;
mMaMethod = maMethod;
mMaAppliedPrice = maAppliedPrice;
mBandsPeriods = bandsPeriods;
mBandsDeviation = bandsDeviation;
mBandsAppliedPrice = bandsAppliedPrice;
mPLRatio = plRatio;
mMagicNumber = magicNumber;
mTradeComment = tradeComment;
mTradeVolume = tradeVolume;

mLeg = leg;


#ifdef __MQL5__
//init the indicator handles
// and set the buffers to series
HandleMa = iMA(Symbol(), Period(); mMaPeriods, 0, mMaMetod, mMaAppliedPrice);
Print("Could not create MA Handle");
mInitStatus - INIT_FAILED);
return;
}
ArraySetAsSeries(BufferMa, true);
HandleBands = iBands(Symbol(), Period(), mBandsPeriods, 0, mBandsDeviation, mBandsAppliedPrice);
if (HandleBands==INVALID_HANDLE) {
Print("Could not create Bands Handle");
mInitStatus = INIT_FAILED;
return;
}
ArraySetAsSeries(BufferBandsUpper, true);
ArraySetAsSeries(BufferBandsLower, true);
ArraySetAsSeries(BufferBandsMid, true);

// one time set the magic number
Trade. SetExpertMagicNumber(mMagicNumber);
##endif

FindCurrentTicket();

mInitStatus = INIT_SUCCEEDED;
}
~CCurrentTrade() {
#ifdef __MQL5__
IndicatorRelease(HandleMa);
IndicatorRelease(HandleBands);
#endif
}
// If already tracking a ticket check if still open\
// set to zero if closed
void CheckIfClosed() {

// if already tracking a ticket check if stil open
// if the ticket is still open then exit with nothing more to do
if (mCurrentTicket>0) {
if (IsTicketOpen(mCurrentTicket)) return;
// at this point i should be able to just assume there are not tickets
mCurrentTicket = 0;
}
} // end CheckIfClosed()

// function to update the current indicator values
void UpdateIndicators() {
#ifdef __MQL4__
mMa = iMA(Symbol(), Period(), mMaPeriods, 0, mMaMethod, mMaAppliedPrice, 1);

mBandUpper1 = iBands(Symbol(), Period(), mBandsPeriods, mBandsDeviation, 0, mBandsAppliedPrice, MODE_UPPER, 1);
mBandUpper2 = iBands(Symbol(), Period(), mBandsPeriods, mBandsDeviation, 0, mBandsAppliedPrice, MODE_UPPER, 2);

mBandLower1 = iBands(Symbol(), Period(), mBandsPeriods, mBandsDeviation, 0, mBandsAppliedPrice, MODE_LOWER, 1);
mBandLower2 = iBands(Symbol(), Period(), mBandsPeriods, mBandsDeviation, 0, mBandsAppliedPrice, MODE_LOWER, 2);

mBandMid = iBands(Symbol(), Period(), mBandsPeriods, mBandsDeviation, 0, mBandsAppliedPrice, MODE_MAIN, 1);

#endif

#ifdef __MQL5__
if (!FillBuffers()) return;
mMa = BufferMa[1];

mBandUpper1 = BufferBandsUpper[1];
mBandUpper2 = BufferBandsUpper[2];

mBandLower1 = BufferBandsLower[1];
mBandLower2 = BufferBandsLower[2];

mBandMid = BufferBandsMid[1];
#endif

mClose1 = iClose(Symbol(), Period(), 1);
mClose2 = iClose(Symbol(), Period(), 2);
mBid = SymbolBid(Symbol());
mAsk = SymbolAsk(Symbol());

} // end UpdateIndicators()

int GetOpenCondition() {
if ( (mClose2>mBandUpper2 && mClose2<mBandUpper1) // closed inside from above after being outside
&& (mMa>mBandMid) // ma above band mid for high side
&& (mMa<mBid) // price must be higher than ma
) {
return(-1); // sell
}

if ( (mClose2<mBandUpper2 && mClose2>mBandUpper1) // closed inside from below after being outside
&& (mMa<mBandMid) // ma below band mid for low side
&& (mMa>mAsk) // price must be lower than ma
) {
return(1); // buy
}
return(0); // nothing
} // end GetOpenCondition


// main processing loop
void OpenOnCondition(int condition) {

double tp = (mLeg==0) ? mMa : mBandMid;
double sl = 0;

if ( condition>0 ) { // BUY
// TP WILL DEPEND ON LEG NUMBER
// SL WILL BE RATIO FROM THE MA, SO SAME SL FOR BOTH LEGS
sl = mAsk-((mMa-mAsk) /mPLRatio);
OpenTrade(ORDER_TYPE_BUY, mAsk, sl, tp);
return;
}

if ( condition<0 ) { // SELL
// TP WILL DEPEND ON LEG NUMBER
// SL WILL BE RATIO FROM THE MA, SO SAME SL FOR BOTH LEGS
sl = mBid+((mBid-mMa) /mPLRatio);
OpenTrade(ORDER_TYPE_SELL, mBid, sl, tp);
return;
}
}

#ifdef __MQL4__

void SetBreakEven() {

if (mCurrentTicket<=0) return;
if (!OrderSelect((int)mCurrentTicket, SELECT_BY_TICKET)) return;
bool result = OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice(), OrderTakeProfit(), OrderExpiration());

}
void OpenTrade(ENUM_ORDER_TYPE type, double price, double sl, double tp) {
int ticket = OrderSend(Symbol(), type, mTradeVolume, price, 0, sl, tp, mTradeComment, mMagicNumber);
if (ticket>0) {
mCurrentTicket = ticket;
}
}
bool IsTicketOpen(ulong ticket) {
if (!OrderSelect((int)ticket, SELECT_BY_TICKET)) return(false);
if (OrderCloseTime()>0) return(false);
return(true);
}

// find a ticket for this EA if there is already one open
void FindCurrentTicket() {
mCurrentTicket =0;
int cnt = OrdersTotal();
for (int i=cnt-1; i>=0; i--) {
if (!OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) continue;
if (OrderSymbol()==Symbol() && OrderMagicNumber()==mMagicNumber) {
mCurrentTicket = OrderTicket();
return;
}
}
}
#endif

#ifdef __MQL5__
bool FillBuffers() {
int maCount = CopyBuffer(HandleMa, 0, 0, 3, BufferMa);
int upperCount = CopyBuffer(HandleBands, UPPER_BAND, 0, 3, BufferBandsUpper);
int lowerCount = CopyBuffer(HandleBands, LOWER_BAND, 0, 3, BufferBandsLower);
int midCount = CopyBuffer(HandleBands, BASE_LINE, 0, 3, BufferBandsMid);

if (maCount<3 || upperCount<3 || lowerCount<3 || midCount<3) return(false);
return(true);
}

void BreakEven() {

if (!PositionSelectByTicket(mCurrentTicket)) return;
Trade.PositionModify(mCurrentTicket, PositionInfo.PriceOpen(); PositionInfo.TakeProfit());
}

void OpenTrade(ENUM_ORDER_TYPE type, double price, double sl, double tp) {
if (Trade.PositionOpen(Symbol(), type, mTradeVolume, price, sl, tp, mTradeComment)) {
mCurrentTicket = Trade.ResultOrder();
}
}
bool IsTicketOpen(long ticket) {
if (!PositionSelectByTicket(ticket)) return(false);
return(true);
}

//find a ticket for this EA if there is already one open
void FindCurrentTicket() {
mCurrentTicket = 0;
if (PositionInfo.SelectByMagic(Symbol(), mMagicNumber)) {
mCurrentTicket = PositionInfo.Ticket();
}
}
#endif

double SymbolAsk(string symbol) { return(SymbolInfoDouble(symbol, SYMBOL_ASK)); }
double SymbolBid(string symbol) { return(SymbolInfoDouble(symbol, SYMBOL_BID)); }
};
 
 
  • Post #47,725
  • Quote
  • Aug 9, 2021 10:12am Aug 9, 2021 10:12am
  •  Juliefa
  • | Commercial Member | Joined Aug 2021 | 268 Posts
the class .mqh file is for MT4 AND MT5 and both can be benefited. this is not my original code. and this code believes to get 800%. check if its true or false. thank you admin.
 
 
  • Post #47,726
  • Quote
  • Edited 10:58am Aug 9, 2021 10:38am | Edited 10:58am
  •  newhope
  • | Joined Mar 2018 | Status: Member | 118 Posts
Hi great coders & traders,
i really need your help, may be this is a beginner question ... but i can not understand it ... please look at image below

Timeframe we see on image is M1, there are some candles not shown ... this is happened after i put some indicators on it, and then i shutdown my mt4 platform. after i open it again, i got this problem ...
Which indicators that cause this? i do not know , i believe there is some bugs on my indicators ... the solution i found is (for temporary), i remove totally all indicators, shutdown my platform and restart it again without any indicators at all. But this will time consume if every time i must do like it after i start my platform with my all indicators on it... how can i debug the cause of this error ??
Price jumping because of no data (about two hours) catch by the mt4 platform, it is not only at this time frame, but also at other time frame too (some times) ... Based on other broker, i got the same problem but the price begin from ca. 1.1783x (different time of starting the mt4 platform) ... how come ??

---
Another question: every broker have different OHLC price ... although some of them have same server time (lets say GMT+2). if our favorite broker is no more exist in the future, we will get problem. How can we make the same OHLC price of each time frame like our favorite broker, if we download ticked data from other place (lets say from ducascopy ) ... or is there any solution for this ??

Any idea/clue is really helpful ... Thank you very much in advance.
Attached Image (click to enlarge)
Click to Enlarge

Name: problem_jumping_price.jpg
Size: 66 KB
 
 
  • Post #47,727
  • Quote
  • Edited 11:21am Aug 9, 2021 11:09am | Edited 11:21am
  •  Samalin
  • Joined Apr 2017 | Status: Member | 630 Posts
Quoting mntiwana
Disliked
{quote} Indicators are not good or bad at all but their usage,depends on users how they use it and how much they are expert to invent some required display formation by playing with different provided parameters - assist to what ?
Ignored
you only post picture, i mean assist to post alb centered (on chart) indicator, i cant find it online pleaseee
 
 
  • Post #47,728
  • Quote
  • Aug 9, 2021 3:43pm Aug 9, 2021 3:43pm
  •  Thiagot10
  • | Joined Jan 2020 | Status: Member | 312 Posts
Quoting mntiwana
Disliked
{quote} "RSI_4xMTF_L50_Signals_v1.2" Even then not clear enough to me,may be i am dull enough - any way posting one multi 4X (multi instances) ver where a user can choose any value/period for any TF,it can be different periods for same TF and or same or different values for different TFs - color change possibility on zero cross and or not some alert and arrows included too {image}{image} {image}{image}{image} {file}
Ignored

hello dear friend, can you put this indicator to give the intrabar signal, as soon as the arrow appears to give input?


Attached File(s)
File Type: mq4 Fractals alert (3).mq4   15 KB | 164 downloads
 
 
  • Post #47,729
  • Quote
  • Aug 9, 2021 3:46pm Aug 9, 2021 3:46pm
  •  enochben
  • Joined Dec 2007 | Status: a.k.a. the speculator | 961 Posts
Is there an easy way to convert a mt4 indicator into a mt5 indicator?

Thanks in advance.
 
 
  • Post #47,730
  • Quote
  • Aug 9, 2021 4:04pm Aug 9, 2021 4:04pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,382 Posts
Quoting Samalin
Disliked
{quote} you only post picture, i mean assist to post alb centered (on chart) indicator, i cant find it online pleaseee
Ignored
It is your posted "alb TriangularMA price zone mtf alerts.mq4 " indicator
here
https://www.forexfactory.com/thread/...1#post13654081

just played with provided parameters my way -
 
 
  • Post #47,731
  • Quote
  • Aug 9, 2021 4:10pm Aug 9, 2021 4:10pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,382 Posts
Quoting enochben
Disliked
Is there an easy way to convert a mt4 indicator into a mt5 indicator? Thanks in advance.
Ignored
I dont think so - i came across only few codes that were working equally on both terminals MT4/5,the same code but these were few examples and were coded the way - all rest indicators coded particularly for MT4 or MT5
 
1
  • Post #47,732
  • Quote
  • Aug 9, 2021 4:15pm Aug 9, 2021 4:15pm
  •  Samalin
  • Joined Apr 2017 | Status: Member | 630 Posts
Quoting mntiwana
Disliked
{quote} It is your posted "alb TriangularMA price zone mtf alerts.mq4 " indicator here https://www.forexfactory.com/thread/...1#post13654081 just played with provided parameters my way -
Ignored
OOK please help me with the parameters you used your way, on that post i cant get the price to touch the body of the channel
since you can do that please kindly share parameters your way, you are more experienced on this issue
 
 
  • Post #47,733
  • Quote
  • Aug 9, 2021 5:11pm Aug 9, 2021 5:11pm
  •  7division
  • | Joined Jan 2020 | Status: Member | 52 Posts
Hello guys,

Can someone please add arrow option to this kijun sen indicator when colour change

Thanks
Attached File(s)
File Type: mq4 Kijun-Sen alerts.mq4   6 KB | 131 downloads
 
 
  • Post #47,734
  • Quote
  • Aug 9, 2021 5:12pm Aug 9, 2021 5:12pm
  •  Isabella_D
  • Joined Jan 2012 | Status: Member | 954 Posts
Quoting Isabella_D
Disliked
{quote} Hi Mntiwana, I have not yet completed the observations on the Indicator Fractal. Regarding the other Indi (double smoothed EMA trend amplified): I have the impression that it is a very good addition to Fractal. Unfortunately I couldn't find it under MT4 search. Can you release it? It seems its time to use Mq5
Ignored
Thanks Mntiwana, its done. Have found another suitible indi for this purpose.
1
 
  • Post #47,735
  • Quote
  • Aug 9, 2021 8:10pm Aug 9, 2021 8:10pm
  •  Kmatrades
  • | Joined Aug 2021 | Status: Member | 7 Posts
Quoting vivaldi2
Disliked
Hi, can somebody change the formula of EMA on this dashboard indicator to HMA ? here is the HMA forumla ; HMA(n) = WMA(2*WMA(n/2) – WMA(n)),sqrt(n)) Thanks in advance {file}
Ignored
Hi Vivaldi, as per your search have you managed to find any MAD-HMA (moving average distance), MTF 2 HMA Cross dashboard, or MTF price cross HMA dashboard?
If you have would you kindly give me a shout and if you would care to share

I am an HMA strategy person
 
 
  • Post #47,736
  • Quote
  • Aug 9, 2021 10:57pm Aug 9, 2021 10:57pm
  •  Sammih
  • Joined Mar 2015 | Status: Living Life Large | 743 Posts
Attached Image (click to enlarge)
Click to Enlarge

Name: NZDUSDH1.png
Size: 29 KB

Hello Everyone,

I need litle help, kindly assist if you can.

In the attached picture, I have dashboards for the stochastic and MA. I have used Red for overbought and green for oversold. The MA tells us whether price is above below MA.

Its quite tiresome to scan through all the pairs looking for overbought pairs in a downtrend and oversold in an uptrend.

Can someone please merge the two so that only red ones and green ones appear?

Red - Short. Both Timeframes (on both dashboards are red)
Green - Long.

For Example, in the picture,

AUDNZD 1HR RED
CHFJPY 15MIN RED
ETC ETC

Only the ones that correspond should appear on the MT4 dashboard.
Attached File(s)
File Type: mq4 MA Dashboard.mq4   10 KB | 153 downloads
File Type: mq4 DCSTO evi.mq4   20 KB | 128 downloads
 
 
  • Post #47,737
  • Quote
  • Aug 10, 2021 6:05am Aug 10, 2021 6:05am
  •  Fx.art
  • | Joined May 2019 | Status: Member | 49 Posts
Hello friends, can anyone help me?
I want the indicator name and the numbers in front of it to be removed and not displayed

Attached Image (click to enlarge)
Click to Enlarge

Name: 97d618036b184ee8d4027ac84e6f32cb.png
Size: 33 KB
Attached File(s)
File Type: mq4 macd-color-indicator.mq4   8 KB | 131 downloads
 
 
  • Post #47,738
  • Quote
  • Aug 10, 2021 6:14am Aug 10, 2021 6:14am
  •  HoLoTrader
  • | Joined Apr 2021 | Status: Member | 17 Posts
Good morning guys. I am searching for an EA that plots a predetermined SL when i open a trade. I can't find it anywhere. Hope you can help me

Cheers
 
 
  • Post #47,739
  • Quote
  • Edited 9:10am Aug 10, 2021 8:45am | Edited 9:10am
  •  Erebus
  • Joined Jul 2011 | Status: Member | 7,002 Posts
Quoting HoLoTrader
Disliked
Good morning guys. I am searching for an EA that plots a predetermined SL when i open a trade. I can't find it anywhere. Hope you can help me Cheers
Ignored
Specifics help - MT4 or MT5 or other?

https://www.forexfactory.com/thread/...-45-platforms?



https://www.mql5.com/en/code/10689

Maximize wins, minimize loss, stay in the game as long as you can
 
 
  • Post #47,740
  • Quote
  • Aug 10, 2021 9:04am Aug 10, 2021 9:04am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 2,059 Posts
Quoting HoLoTrader
Disliked
Good morning guys. I am searching for an EA that plots a predetermined SL when i open a trade. I can't find it anywhere. Hope you can help me Cheers
Ignored
https://www.forexfactory.com/thread/...7#post12784547
TSLA - $123.18 - Dec 31: 5 yr Chart - Future *shares* BUY - Target 100% ROI
 
2
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 23852386Page 238723882389 2915
    • 1 Page 2387 2915
24 traders viewing now, 9 are members:
treiada.3dg
,
sadd
,
Invisible
,
MwlRCT
,
fx1079
,
baktinusa
,
VikThor1
,
harunsan
,
FibFork
  • 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