- Search Crypto Craft
-
the Guru replied Nov 11, 2008The issue seems to be that the code is checking the wrong 2 bars for the cross. The alert code // ======= Alert ========= if(AlertOn) { if(prevtime == Time[0]) { return(0); } prevtime = Time[0]; BuyNow = Buy[0]; BuyPrevious = Buy[1]; SellNow = ...
RSI sound alert
-
the Guru replied Nov 11, 2008Thanks for clearing that up. This one will show an alert for you anytime the 2 lines cross

put an alert on indicator..
-
the Guru replied Nov 10, 2008Can you let me know a bit more of the specifics. The indicator has 3 values and I believe (but do not know for certain) that 'crossing' will mean (for example) ... OsMA (white histogram) is below 0 MACD (white line) is already below 0 Signal (red ...
put an alert on indicator..
-
the Guru replied Nov 10, 2008Looking at the code I would say that it is already do-able. There is an external variable (input) simply called 'i' that defaults to 0. Try setting this to 1 and let me know if that gives you what you are after.
Modified Center of Gravity
-
the Guru replied Nov 4, 2008I'd be happy to code something up for you if I can. Let me know what it is precisely that you need and I will get on to it as soon as.
Fractal Efficiency Indicator
-
the Guru replied Nov 3, 2008Your welcome. It was fairly easy in the end because I didn't realize that 'volume' actually refers to 'number of ticks' and not, as I have wrongly believed till now, some sort of financial volume. So I need to thank you also for making me learn ...
Can anyone create this Indicator?
-
the Guru replied Nov 3, 2008Try this ... but please remember to test it on a demo account first to ensure you are happy with how it works. I have shown the SL price as a comment so you could compare the price calculated by the EA to the level shown with the indicator.
trailing stop ea using ATR
-
the Guru replied Nov 3, 2008Your welcome Tommy. But before you thank me too much, you may want to update with this file. I forgot to put a check for a new candle so the previous one would alert you on every tick. Oooops sorry.
Add alert to Schaff TC
-
the Guru replied Nov 3, 2008Quick question. I am looking at the ATR function and there is only the one parameter - period. Can you please tell me what the other ones are for and how they affect the ATR? Thanks
trailing stop ea using ATR
-
the Guru replied Nov 3, 2008This should work for you Tommy. Note: setting a level to 0 (zero) will disable that alert.
Add alert to Schaff TC
-
the Guru replied Nov 3, 2008Piece of cake. The issue would be what trades would it work on and what trades would it not. If you want it to work on ALL trades then it is very simple, otherwise I could code the EA to require an order number (but that would then mean needing ...
trailing stop ea using ATR