Question about buy/sell scalping alert.

 
Please have a look at the MACD example or any other example that comes with MetaEditor you can tweak it to suit your needs.
 
Marco vd Heijden:
Please have a look at the MACD example or any other example that comes with MetaEditor you can tweak it to suit your needs.
Excuse my ignorance. But where can I find this?
 
Search - MQL5.community
Search - MQL5.community
  • www.mql5.com
Searching is based on morphology and is insensitive to case. All letters, no matter of their case, will be processed as lowercase. By default, our search engine shows pages, that...
 

HI Please help me!!

I Need to get Value of RSI Between 55 and 70

Which way is correct 

  • 55<RSI>70 
  • 55 RSI && RSI>70 

i Tried both but my Ea Keep Buying after 70 Also... :-)

Iam not a Programmer trying to create a EA...

Thanks In Advance 

 
sadeth06: I Need to get Value of RSI Between 55 and 70

Which way is correct 

  • 55<RSI>70 
  • 55 RSI && RSI>70
  1. Don't hijack other peoples threads with your off topic post. Next time open a new one.
  2. 55 < RSI > 70 isn't what you think it is, it is always false. True = non-zero and false = zero so you get
    if( 3 < 2 < 1 )
    if( false < 1 )
    if(     0 < 1 )
    if(     true  )
    if( 3 > 2 > 1 )
    iftrue > 1 )
    if(     1 > 1 )
    if(     false )
    
  3. The second won't compile. Did you mean 55 < RSI && RSI > 70? That tests for below 55 and above 70 at the same time, which can never be true.
  4. Show us your actual code.
 
whroeder1:
  1. Don't hijack other peoples threads with your off topic post. Next time open a new one.
  2. 55 < RSI > 70 isn't what you think it is, it is always false. True = non-zero and false = zero so you get
  3. The second won't compile. Did you mean 55 < RSI && RSI > 70? That tests for below 55 and above 70 at the same time, which can never be true.
  4. Show us your actual code.

whroeder1,

Thanks I get it now,

About high jacking the post so sorry about that.

When i open new one Admins says Dont create new one Lol.

Any Way Thak you very much.

 

Forum on trading, automated trading systems and testing trading strategies

When you post code please use the CODE button (Alt-S)!

Use the CODE button

Thank you.