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
7:59 AM GMT
11PM
 1AM
 3AM
 5AM
 7AM
 9AM
11AM
 1PM
 3PM
 5PM
 7PM
 9PM
 
 
 
Sydney 6:59 PM
Tokyo 4:59 PM
London 7:59 AM
New York 2:59 AM
Major Currency Pairs
Previous Day Levels
Symbol
Bid
High
Low
Now
---
--
---
--
---
--
---
--
--
--
--%
--
--
--%
--
--
--%
--
--
--%
Login

Forex Signal Wizard For LOCTrader Expert Advisor And Manual Trading.

This online tool allows you to create signal indicators to use with LOCTrader EA. You can apply your rules and create complex indicators using this easy to use tool.

LandOfCash Signal Indicator Wizard
Click To Create Your own Signal For LOCTrader EA

LOCTrader Forex Expert Advisor Signals Created By Community.

You can download signal indicators for free and use for manual trading with Meatrader 4. Also you can use these indicators with LOCTrader EA as signal providers.

booli Signal

Created: 9/15/2014 2:24:32 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); }

ema Signal

Created: 9/15/2014 1:46:37 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); }

CROSSOVER 5EMA AND 20 SIMP Signal

Created: 9/15/2014 11:49:30 AM
THIS IS 5 EMA AND 20 EMA - THE 5 CROSSOS OVER THE 20
 

simple CROSSOVERS Signal

Created: 9/15/2014 11:16:07 AM
This indicator is a simple cross over of the 5 ema and the 20 sma

EMACrossSignalAlert Signal

Created: 9/15/2014 7:24:31 AM
2 EMA Cross 3 EMA

macds1 Signal

Created: 9/14/2014 10:19:00 AM
macds1
 

456 Signal

Created: 9/12/2014 12:10:07 AM
BUY SELL

ERE Signal

Created: 9/11/2014 11:56:28 PM
ERWE

123 Signal

Created: 9/11/2014 11:35:39 PM
wsds
 

NEW Signal

Created: 9/11/2014 11:25:52 PM
ASD

123 Signal

Created: 9/11/2014 11:23:53 PM
INTRDAY TRADING

NEW Signal

Created: 9/11/2014 10:59:27 PM
BUY SELL SIGNAL
 
 
LandOfCash.net - Forex Expert Advisors and Custom Indicators
Terms of use License Agreement Privacy Policy
Copyright © www.LandOfCash.net 2011