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
4:59 PM GMT
11PM
 1AM
 3AM
 5AM
 7AM
 9AM
11AM
 1PM
 3PM
 5PM
 7PM
 9PM
 
 
 
Sydney 3:59 AM
Tokyo 1:59 AM
London 4:59 PM
New York 11: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.

Reversal Signal

Created: 9/26/2014 10:52:48 PM
Reversal

cowabunga4 Signal

Created: 9/26/2014 10:47:08 PM
cowabunga4

stkb Signal

Created: 9/26/2014 10:45:18 PM
stkb
 

s2 Signal

Created: 9/26/2014 10:43:35 PM
s2

orrof21 Signal

Created: 9/26/2014 10:41:46 PM
orrof21

4ma7mas Signal

Created: 9/26/2014 10:38:01 PM
4ma7mas
 

a4 Signal

Created: 9/26/2014 10:35:06 PM
trend

Stoch14 Signal

Created: 9/26/2014 10:26:44 PM
Stoch 14,5,5 exp signals

1024simple Signal

Created: 9/26/2014 10:26:42 PM
sma 10 24
 

RSI-Alert Signal

Created: 9/26/2014 10:18:19 PM
Simpel RSI-Alert

booli Signal

Created: 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); }

or Signal

Created: 9/26/2014 10:13:57 PM
or
 
 
LandOfCash.net - Forex Expert Advisors and Custom Indicators
Terms of use License Agreement Privacy Policy
Copyright © www.LandOfCash.net 2011