| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack (85) | Thread Tools | Display Modes |
|
|||
|
Anyone please? it would really help since those are the only indi's i use.
btw, i did look all over the place inc this thread again and did not find it, actually i did find the 2MA Crossover indi posted 2 times but without sound alert, also i did found an MTF Stoch with alert(without sound) but its not what i need and its kinda wired with those dots.... no one have 5min for me (if not less)? Thanks
__________________
Creativity is all you need, Its part of the BALANCE |
|
|||
|
Quote:
k3iroll |
|
|||
|
crossover alert
Thank you for posting your crossover alert ind but I am a little confused about the input settings. What I am trying to do is get an alert when there is a crossover of a 7 period ema (applied to close) and a 3 period ema (applied to open).
Would appreciate any help you are anyone else could offer.
__________________
"Time is a great teacher, unfortunately it kills all of its students" |
|
|||
|
Quote:
MA1Mode is the type of moving average, MA1 Price is the type of price from the list. Same with MA2 Defaults are EMA 3 on open and EMA 7 on close. Here is the modified version with Price added as an input. Also try the stochastic indicator. I added code for alert copied from 2MA Crossover. Let me know if it works. Robert Last edited by MrPip; 11-26-2007 at 06:29 PM. Reason: explain inputs |
|
|||
|
Quote:
Robert |
|
|||
|
Thanks A lot MrPip !
+ i want the stoch to play those waves for every cross side so i added those lines: PlaySound("Stochastic Crossing Up.wav"); PlaySound("Stochastic Crossing Down.wav"); and now its looks like this: // Alert if ((BufferK[i] < BufferD[i]) && (BufferK[i+1] > BufferD[i+1])) { if (AlertOn && NewBar()) { Alert(AlertPrefix + "Crosses UP "); PlaySound("Stochastic Crossing Up.wav"); } } else if ((BufferK[i] < BufferD[i]) && (BufferK[i+1] > BufferD[i+1])) { if (AlertOn && NewBar()) { Alert(AlertPrefix+"crosses DOWN "); PlaySound("Stochastic Crossing Down.wav"); } } } return(0); } and its working, but only when i restart my MT and for 1 time only, any idea what could be wrong? Thanks
__________________
Creativity is all you need, Its part of the BALANCE |
|
|||
|
Quote:
Thank you P.S. I reversed the open/close settings for the 2 ema's and it works perfectly.
__________________
"Time is a great teacher, unfortunately it kills all of its students" |
![]() |
| Bookmarks |
| Tags |
| alert, forex, histogram, Signal, snake, snake indicator, wlxfractals, EMA-Crossover_Signal.mq4 |
| Thread Tools | |
| Display Modes | |
|
|