Quantcast
Channel: MQL5: MetaTrader 5 trading, automated systems and strategy testing forum
Viewing all 75046 articles
Browse latest View live

How do we plot up arrow and down arrow.

$
0
0
Filter:

Hi

If you're using buffers to draw the arrows, just set the buffers to EMPTY_VALUE until you get the cross over. 

Do you have idea where to put that EMPTY_VALUE?

Thanks.

      StochMain = iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_MAIN,0);
      StochSignal = iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_SIGNAL,0);

      if (StochMain > StochSignal )
      {
         CrossUp[i] = Low[i] - Range;
         CrossUp[i] = EMPTY_VALUE;
      }
      else if (StochMain < StochSignal)
      {
         CrossDown[i] = High[i] + Range;
         CrossDown[i] = EMPTY_VALUE;
      }

Experts: EA SmartAssTrade.

$
0
0

Hi,

 

1. Which pairs are most profitable when using this SmartAssTrade-Update2 ?

 

2. I noticed you have made SAT3. So, is SAT3 the newest update of SmartAassTrade-Update2 EA? If yes, then, which pairs are most profitable pairs if using SAT3 EA?

 

3.  If using this SmartAssTrade-Update2 or SAT3 ea on Multi-pairs at the same time on same account, how about Money Management rules or calculation made by the ea? Is it still safe as trading on 1 pair alone?

 

4. Which time-frame is correct when using SAT3 ? I saw on your website, you said SAT3 must be used on 1h timeframe ONLY.

 

But when attaching SAT3 on 1h time-frame, I saw a warning saying that SAT3 must be used ONLY on M30 timeframe, and if using on other timeframes, there may be Substantial Loss? SO, I REALLY WONDER WHICH TIMEFRAME IS THE CORRECT TIMEFRAME for SAT3: M30 OR 1H ? Please kindly CONFIRM.

 

Thanks a lot for sharing this great potential ea.

 

James Phuc 

Experts: The SmartAssTrade-V2 Forex Expert Advisor

$
0
0
jordan.baucke:
Sure np. Not sure why my backtests are showing "n/a" as a modeling quantity?
I don't know what's happened to your MT4. Maybe history of tick data you are using incomplete.
Or try asking to Service Desk.

Experts: CoensioTrader1V06

$
0
0

Dear Coensio,

 

If using this ea on MT5 platform, and if trading 5 pairs, do we have to open 5 charts? or only 1 chart that can control 5 pairs we input into the ea?

 

Please advise the best pairs and best timeframe to use this ea on. Thanks.

 

Can you provide all the indicators so that I can try applying on manual trading?

 

My email is: jamesphuc8888@gmail.com 

 

Thanks a lot

 

James Phuc 

Problem installation robot in mt4

$
0
0
Good evening everyone .

I bought a robot , but when I try to download it gives me the error : Installation failed [ 403 ] . 
Why can not I use a robot that I bought ?

Best Regards.

Experts: RobotiADXwining

$
0
0

I fixed the bug where MOLINARIS ask the license, the file have only 1923 lines.....

For me this EA doesn't make soud money so far. I will try further

the code is below ENJOY   

How to send chat message to mql5 message form MT4 pc?

$
0
0
98765mega:

hello 

it's an ID sended to my phone put when i participate with it to make a signals it doesn't complete

there is a messege apears telling me thatInvalid MetaQuotes ID format 

plz tell me what i have to do 

Check correctness of MetaQuotes ID in the terminal:

MetaQuotes ID  

Press review

$
0
0

USD/JPY Awaiting Breakout Above 119 With Bearish Patterns Lacking (based on dailyfx article)

  • Strategy: Flat, Pending Long On Daily Close Above 119.00
  • Dojis Indicated Reluctance From The Bears Near 117.40
  • Intraday Chart Reveals Absence Of Key Reversal Patterns


USD/JPY has managed to regain some upward momentum after a string of Dojis suggested reluctance from the bears to lead the pair lower. With key reversal patterns lacking the prospect of a pullback is questionable. Amid a core uptrend a break of the nearby 119.00 ceiling may herald a push towards the next definitive resistance level at 119.80.

Experts: Fracture 7.4.0

$
0
0
This robot it is good. If autor will be continue on job will be robot a perfect ;-). Some upgrade with StopLoss or remember after you restart client your trades.

Freelance, .ex4 paid indicator

$
0
0
contact the author of the indicators. They might help you with the mql file

How to run EA on Renko

$
0
0

Hello Guys 

Any idea how to run an EA on Renko Chart?

I tried all the most known methods but still no respond 

even a simple Comment in the start() function does not work.

please advise.

Thanks. 

How I can refund my money from mql5 market ?

$
0
0
You can have him send you money to a paypal account.  You don't even need an account. Check paypal it's very easy

SIGN

$
0
0
I have to balance on the $ 21 bill and I'm trying to sign the sign Maknyoss the mt4 asks for a password but does not sign what could be wrong?

Traders Joking

Discussion of article "MQL5 Programming Basics: Lists"

$
0
0
I must say this article gives a clear insight about OOP I am moved by how after I read this I gained a lot ,I take a bow

Several issues - main is account issue! double charged!

Unable to Subscribe to a Signal

$
0
0

I am using a demo account connected to MetaQuotes-Demo.

 

When I try to subscribe to a free signal, it asks me for my username and password.  No problem there.  But then on the next screen it asks for the MQL5 password.  I don't have an MQL5 password.  I tried the password assigned to my demo account, but that did not work either.  Please help! :-)

I am beginner of MQL4 :) .. Indicators not bad but rather poor return on expert why? What are my mistakes? How can I solve the problem?

$
0
0
//+------------------------------------------------------------------+
//|                                                        Genie.mq4 |
//|                                                   Genaro Gravoso |
//|                          http://www.oocities.org/ggravoso/b.html |
//+------------------------------------------------------------------+
#property copyright "Genaro Gravoso"
#property link      "http://www.oocities.org/ggravoso/b.html"
#property description "Pivot Point Reversal scalping expert advisor"
#property version   "1.00"
#property strict

//--- Inputs
input double TakeProfit    =500;
input double Lots          =0.1;
input double TrailingStop  =200;
input double MaximumRisk   =0.02;
input double DecreaseFactor=3;
bool al=false;
bool kalem=false;
 int    total,res,alim,satim,t,i,m;
   double a,b,c,d,e,f,g,h;
   bool mkl,mkl1;


void CheckForOpen()
  {
  
//--- go trading only for first tiks of new bar
  
   total=OrdersTotal();
  
         a=iMA(NULL,0,15,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         b=iMA(NULL,0,1,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         c=iMA(NULL,0,7,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         d=iMA(NULL,0,17,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         e=iMA(NULL,0,15,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         f=iMA(NULL,0,1,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         g=iMA(NULL,0,7,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
         h=iMA(NULL,0,17,0,MODE_SMA,PRICE_CLOSE,i);//3.bölüm kaç bar alınacağı,4.bölümişlemin kaçıncı bardan başlanacağını,5.bölüm hangi matematiksel işlemin olacağını.6.bölüm uygulanması istenen fiyatın türünü ifade etmektedir.son bölümü 0 almakta fayda var...
 
   if( b>a && c>d && al==true )
    
      {
    
     
     
           mkl1=OrderClose(alim,1,Bid,3,Red);
    satim=OrderSend(Symbol(),OP_SELL,1,Bid,3,0,0,"Genie",0,0,Yellow);
    al=false;
       
    } 
   
      
      
       if( e>f && h>g&& al==false )
       
    {
   
       
          mkl=OrderClose(satim,1,Ask,3,Yellow);
     alim=OrderSend(Symbol(),OP_BUY,1,Ask,3,0,0,"Genie",0,0,Blue);
      al=true;
     
       
    }  
      
  
     
//---
  }
//+------------------------------------------------------------------+
//| Check for close order conditions                                 |
//+------------------------------------------------------------------+

//+------------------------------------------------------------------+
//| OnTick function                                                  |
//+------------------------------------------------------------------+
void OnTick()
 {
//--- check for history and trading
   if(Bars<100 || IsTradeAllowed()==false)
      return;
//--- calculate open orders by current symbol
   //if(CalculateCurrentOrders(Symbol())==0) 
   CheckForOpen();
 //  else                                    CheckForClose();
//---
 
 }
//+------------------------------------------------------------------+

Dose anyone have an EA to do this?

$
0
0

Introduction:-. I am looking for an EA to do the following, 

The EA will be using 4 indicators with specific rules to trade multiple pairs using multiple time frames



The Indicators involved are: 

1) EMA set to 50 

2) MACD settings (8,17,9 3)

3) RSI set to 14 period

4) Pivot points. 

Maybe the above should all be variable? 


The Rules of BUY entries: 

1) The Current price candle should be above the 50 EMA. 

2) The MACD histogram (both signal & main line) should be above the zero level. 

3) The RSI should be above the 50 line level. 

4.) The entry is above a broken Pivot Points support or resistance line. 

5.) The Stop loss is placed below the closest/Next Pivot Point Level. 

6.) The Take Profit is placed at the nearest Pivot point Level. 

There will be alerts, (Sound & arrow) which is in optional variable. 


The rules of SELL entries: 

1.) The Current price candle should be below the 50 EMA. 

2.) The MACD histogram (both signal * main line) should be below the zero Level. 

3.) The RSI should be below the 50 line level. 

4.) The entry is below broken Pivot points support or resistance line. 

5.) The Stop Loss is placed above the closest/next Pivot Point level. 

6.) The take profit is placed at the nearest Pivot Point level. 

There will be alerts, (sound & arrow) which is in optional variable. 

The rules of executions are straight forward and I can post the Pivot Point Indicator and template if required.

The rest of the indicators involved are standard. 

A money management will need to be included as an option it should be variable.


Conclusion

If anyone can help I would be truly grateful.

Askforinfo

Frequently Asked Questions about the Signals service

$
0
0

Hello,

 

i followed the steps , i got to the finish but it doesn't copy any trades from the signal maker . I atached a picture . What should i do to copy from the signal provider ? 

Viewing all 75046 articles
Browse latest View live