• Information
9+ years
experience
18
products
365
demo versions
0
jobs
0
signals
0
subscribers
Stephen Reynolds Published product

The Hi Lo Breakout is taken from the concept of the ZZ Scalper EA which exploits the inevitable behaviour of price fluctuations and breakouts.  The fact that because market prices will always fluctuate to higher highs before ebbing down to lower lows, breakouts will occur. But here I've added a few more filters which I see work well also as an Indicator.    Range Analysis :    When price is within a tight range this Indicator will be able to spot this and only then look

Stephen Reynolds Published product

Candlestick Oscillator is a truly unique Oscillator that uses the concepts of within candlestick trading called the Record Session High. This is a method of analysing candlesticks to gauge when a trend might be wearing out and therefore ready for reversal or pause. We call it a record session high when we get 8 or more previous candles that have higher closes. We call it a record session low when we get 8 or more previous candles that have lower closes.  We don't rely on the typical

Stephen Reynolds Published product

Zig Zag 123 tells us when a reversal or continuation is more likely by looking at the shift in supply and demand. When this happens a signature pattern appears known as 123 (also known ABC) will often break out in direction of higher low or lower high. Stop loss and take profit levels have been added. There is a panel that shows the overall performance of your trades for if you was to use these stop loss and take profit levels.  We get alerted if a pattern 123 appears and also if the

Stephen Reynolds Published product
Reviews: 1
30.00 USD

This EA exploits the inevitable behaviour of price fluctuations and breakouts. Because market prices will always fluctuate to higher highs before ebbing down to lower lows, breakouts of these levels will occur.   This EA will open a trade in anticipation of catching some of the profits from these breakout moves. We use the fixed exit methods of Stop Loss, Take Profit and Trailing Stop in such a way so that we will scalp small but consistent profits.  No martingales needed, just a

Stephen Reynolds
Added topic Why CHARTEVENT_OBJECT_CLICK returns x2
Hi, I want to know why within the following code when I press the button CHARTEVENT_OBJECT_CLICK returns 11 instead of just 1? //+------------------------------------------------------------------+ //| Expert initialization
Stephen Reynolds
Added topic Stuck on retrieving previous bid prices by each second?
Hi, im stuck on how to retrieve previous bid prices by each second and then compare them for further use. Using : double curBid = MarketInfo(_Symbol,MODE_BID); I can find current bid of every second no problem but how can I find previous values like
Stephen Reynolds Published product

Volume Analysis Trader looks at volume using a fixed average of volume. This averaging helps spot when volume is rising or declining. Also I have added volume spikes which are when volume suddenly is above the average. These help spot market reversals. This will hep a trader look for the following in their trading: Rising volume during a rally shows trend is strong. Falling volume on a rally shows trend is weakening. As a rule of thumb on daily charts if current volume is higher than yesterday's

Stephen Reynolds Published product
Reviews: 5
FREE

Three Bar Break is based on one of Linda Bradford Raschke's trading methods that I have noticed is good at spotting potential future price volatility. It looks for when the 1st bar's High is less than the 3rd bar's High as well as the 1st bar's Low to be higher than the 3rd bar's Low. This then predicts the market might breakout to new levels within 2-3 of the next coming bars. It should be used mainly on the daily chart to help spot potential moves in the coming days. Features : A simple

Trader_123
Trader_123 2018.05.04
Я скачал этот индикатор но он скачивается только в формате .tx4 а я хотел бы скачать его в формате .mp4, если это возможно пожалуйста вышлите этот индикатор в формате .mp4 мне на почту od0482523590@gmail.com
Stephen Reynolds
Added topic Problem with iMAOnArray
When I place the following code onto the chart why does it usually take 5 minutes to load onto the chart. I know im doing something wrong with buffers and iMAOnArray but cant see what? #property indicator_buffers 1
Stephen Reynolds
Added topic Alert Problems
Why when I use this code to sound an alert it behaves okay and sounds only when the statement is true. #property indicator_chart_window    // External Input Variables extern string SECTION_A  = "*** Arrow Color Settings ***" ;
Stephen Reynolds
Added topic Why cant I read another symbol off chart?
In the following why is it when I input another symbol different to the chart the Indicator is placed on to it doesn't return that symbol? #property indicator_chart_window #property indicator_buffers 1 extern color LabelColor  =
Stephen Reynolds
Added topic MessageBox on Indicators?
Ive been trying to add a messagebox to my indicator only to find in the mql4 documentation that it isn't possible to display this as an indicatorAs stated on a note on the messagebox function : The function cant be called from custom indicators
Stephen Reynolds
Added topic mt4 build 1066
Ive been trying to send an EA for automatic validation but keep getting Please recompile your product with new compiler  the moderator tells me I need the latest version build 1066 (21 Apr 2017). But I cant see where I download it from? Can
Stephen Reynolds
Added topic How To Modify A Pending Order
In the following code why is it I cant get it to place stop loss and take profit onto the pending order after it has been placed? int gBuyTicket; void OnTick() { //--------------    // Timer    //--------------   
Stephen Reynolds
Added topic Broker Differences
Ive been trying to send an EA to the market and get it published by a moderator. It doesn't show any errors in tester on the tickmill demo account I use. It doesn't show any error when put it through automatic validation. But why is the moderator
Stephen Reynolds
Added topic OrderSend error 130?
With the following code I cant see why I'm getting order send error 130 ? When I test on my broker vipromarkets it is bug free but when I take it to auto validation it returns ordersend error 130. Why is it the first code here works okay with no bugs
Stephen Reynolds
Added topic error 4107 ordersend
Why an I receiving ordersend error 4107 and invalid takeprofit for ordersend function on testing the following code? extern string SECTION_C = "*** Trade Management ***"; input int StopLoss = 40;  // Stop Loss input int TakeProfit = 1000; 
Stephen Reynolds
Added topic unmatched data errors?
Im getting the following errors : 2017.04.06 14:48:37.843 TestGenerator: unmatched data error (volume limit 5704 at 2017.03.31 16:00 exceeded) 2017.04.06 14:48:37.843 TestGenerator: unmatched data error (low value 1.06736 at 2017.03.31
Stephen Reynolds
Added topic there are no trading operations
I test me EA on my own broker it works okay. But when I send in for validation I get the following : test on EURUSD,H1 there are no trading operations test on NZDUSD,H1 there are no trading operations test on GBPUSDcheck,M30 there are no trading
Stephen Reynolds
Added topic Operational confusion?
I cant see why the object "margin" is returning 0.0 and not 0.5 like it should? void OnTick () {    double margin = (5 / 10 );    Print ( "margin = " ,margin); }