Forex trading automated systems. Expert advisors and indicators for metatrader platform.

LandOfCash.net

Forex Market Tools For Traders.

Forex Market Trading Expert Advisors and Custom Indicators for Metatrader Platform. Trailing Stop Loss, Partial Position Profit Close, Breakeven EA.

We offer professional, experimental and free tools, expert advisors and indicators for forex market traders.
Forex Market Active Session
8:09 PM GMT
11PM
 1AM
 3AM
 5AM
 7AM
 9AM
11AM
 1PM
 3PM
 5PM
 7PM
 9PM
 
 
 
Sydney 7:09 AM
Tokyo 5:09 AM
London 8:09 PM
New York 3:09 PM
Major Currency Pairs
Previous Day Levels
Symbol
Bid
High
Low
Now
---
--
---
--
---
--
---
--
--
--
--%
--
--
--%
--
--
--%
--
--
--%
Login

booli

Created on 9/26/2014 10:17:18 PM
//+------------------------------------------------------------------+ //| EMA-Crossover_Signal.mq4 | //| Copyright © 2005, Jason Robinson (jnrtrading) | //| http://www.jnrtading.co.uk | //+------------------------------------------------------------------+ /* +------------------------------------------------------------------+ | Allows you to enter two ema periods and it will then show you at | | Which point they crossed over. It is more usful on the shorter | | periods that get obscured by the bars / candlesticks and when | | the zoom level is out. Also allows you then to remove the emas | | from the chart. (emas are initially set at 5 and 6) | +------------------------------------------------------------------+ */ #property copyright "Copyright © 2005, Jason Robinson (jnrtrading)" #property link "http://www.jnrtrading.co.uk" #property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Green #property indicator_color2 Red double CrossUp[]; double CrossDown[]; extern int FasterEMA = 5; extern int SlowerEMA = 10; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0, DRAW_ARROW, EMPTY); SetIndexArrow(0, 233); SetIndexBuffer(0, CrossUp); SetIndexStyle(1, DRAW_ARROW, EMPTY); SetIndexArrow(1, 234); SetIndexBuffer(1, CrossDown); //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { int limit, i, counter; double fasterEMAnow, slowerEMAnow, fasterEMAprevious, slowerEMAprevious, fasterEMAafter, slowerEMAafter; double Range, AvgRange; int counted_bars=IndicatorCounted(); //---- check for possible errors if(counted_bars<0) return(-1); //---- last counted bar will be recounted if(counted_bars>0) counted_bars--; limit=Bars-counted_bars; for(i = 0; i <= limit; i++) { counter=i; Range=0; AvgRange=0; for (counter=i ;counter<=i+9;counter++) { AvgRange=AvgRange+MathAbs(High[counter]-Low[counter]); } Range=AvgRange/10; fasterEMAnow = iMA(NULL, 0, FasterEMA, 0, MODE_EMA, PRICE_CLOSE, i); fasterEMAprevious = iMA(NULL, 0, FasterEMA, 0, MODE_EMA, PRICE_CLOSE, i+1); fasterEMAafter = iMA(NULL, 0, FasterEMA, 0, MODE_EMA, PRICE_CLOSE, i-1); slowerEMAnow = iMA(NULL, 0, SlowerEMA, 0, MODE_EMA, PRICE_CLOSE, i); slowerEMAprevious = iMA(NULL, 0, SlowerEMA, 0, MODE_EMA, PRICE_CLOSE, i+1); slowerEMAafter = iMA(NULL, 0, SlowerEMA, 0, MODE_EMA, PRICE_CLOSE, i-1); if ((fasterEMAnow > slowerEMAnow) && (fasterEMAprevious < slowerEMAprevious) && (fasterEMAafter > slowerEMAafter)) { CrossUp[i] = Low[i] - Range*0.5; } else if ((fasterEMAnow < slowerEMAnow) && (fasterEMAprevious > slowerEMAprevious) && (fasterEMAafter < slowerEMAafter)) { CrossDown[i] = High[i] + Range*0.5; } } return(0); }

This indicator can be used as a signal provider for LOCTrader Expert Advisor.
EURUSD
USDJPY
GBPUSD
USDCHF
 
 
M1
M5
M15
M30
Hourly
H4
Daily
 
 
You are using an uotdated browser. To see this chart please upgrade.
 
-
+
 
 

Buy Signals

Condition 1

Moving Average 14 Simple Close
Crosses from Top to Bottom
MACD Main
Fast EMA period:12 Slow EMA period:26 Signal period:9 Applied to:Close

Sell Signals

 

To download this signal indicator you need to register or login. It is free.

Please Login

 
 
 
This is a custom indicator for Metatrader 4 platform. To use it you need:
  1. Download this indicator and copy into your metatrader experts/indicators folder.
  2. Restart your Metatrader 4 terminal.
  3. Indicator will appear under Custom Indicators section. Attach the indicator on the chart.
Use it at your own risk!
This indicator was created by one of our visitors. You can create your own indicator like this one using your rules and logic.

Also you can use this indicator as a base to create your own. Click to create your own indicator from this one.
LandOfCash.net - Forex Expert Advisors and Custom Indicators
Terms of use License Agreement Privacy Policy
Copyright © www.LandOfCash.net 2011