• Information
9+ years
experience
18
products
365
demo versions
0
jobs
0
signals
0
subscribers
Stephen Reynolds
Stephen Reynolds
The Hi Lo Breakout is taken from the concept of the ZZ Scalper EA which exploits the inevitable behaviour of price fluctuations that create highs and lowsto which price eventually breaks out of.

The Hi Lo Breakout will wait till these highs and lows are in a tight range than alert you when a breakout occurs which can lead to some good profits
For more info see here https://www.mql5.com/en/market/product/33147
Stephen Reynolds
This trading method is taken from ZZ Scalper and modified for what I would say are some high probable signals. Ive noticed that when previous highs and lows are within a tight range a breakout of this range is more likely and often results in signaling a good move just before it happens...
Stephen Reynolds
On the Metatrader platforms we see a rolling 24hr chart. Where as with this EA for example if we are analysing the SP 500 we look at the gap between the current days open at 16:30 and yesturdays close at 23:00. So we are in effect revealing something hidden by a normal Metatrader chart...
Stephen Reynolds
Added topic Why error "strategy tester report not found"
Hi, in the following code why is it on market test when i tested once it passed okay But when i try again about 30 minutes later with the exact same code it says "test on EURUSD H1 strategy tester not found"  #property copyright "Copyright 2023
Stephen Reynolds
Added topic OrdersTotal doesnt always work?
Hi, why in the following code does OrdersTotal() not always return an order?  void OnTick () {    // Timer    int hour = Hour();    int timehour = 10 ;    // Buy Switch      static bool
Stephen Reynolds
Added topic BMP File not loading on tester?
Hi, on executing the following code, why is it, the bmp file shows okay when i place  ea directly onto the chart but when i use on tester it doesnt show the image?  This problem is in mql5. In mql4 it works with no problems on chart or
Stephen Reynolds
Added topic Converting bmp file problem?
Hi, why in the following code is only one bmp image showing? void OnStart () {    string objName1= "img1" ,objName2= "img2" ;    string imgFile1= "\\Images\\dollar.bmp" ;    string imgFile2= "\\Images\\arrows.bmp" ;
Stephen Reynolds
Added topic Why isnt my sum working?
Hi, ive been trying to compare the current days open to yesturdays close but am a little stuck on the following.  Can someone please explain to me that within the following code
Stephen Reynolds
Added topic Payment delay
Hi, can someone explain whats going on with a delayed payment i have on my account? Its now at -1296 hours? And still pending. What is going on
Stephen Reynolds
Added topic Insert table query?
Hi, how do you change the text from this To this To demonstrate this i used the inspect button in windows 10. But when i save it it goes back to the center position?   
Stephen Reynolds
Added topic wrong timeframe request error
Hi, why on the following do i get error "wrong timeframe request in open prices testing mode error" when i test on the 15m timeframe? double lowprice_i= iLow ( _Symbol ,( ENUM_TIMEFRAMES ) 5 , iLowest ( _Symbol , ( ENUM_TIMEFRAMES ) 5 , MODE_LOW , 11
Stephen Reynolds
Added topic Error cannot convert enum in mql5
Why is it i get the "cannot convert enum" error in mql5? but not mql4?    In the following i get the error  int tf= 0 ; iLow ( _Symbol ,tf, 0 );  But if i type it directly into the parameter there is no error? iLow ( _Symbol , 0
Stephen Reynolds
Added topic array out of range on strict?
Why on the flowing code do i get array out of range error only when on property strict? int start() {    double atr,lowprice_i,highprice_i,lowma,highma;    bool nexttrend= 0 ;    double minhighprice= High[ Bars - 1 ];
Stephen Reynolds
Added topic ObjectCreate() not placing objects like it should
Hi, when used as mql5 in the following code why does Example 2 display objects on chart okay but, in Example 1 it does not? int start() {      datetime TIME = iTime ( NULL , 0 , 1 );    double PRICE = iOpen ( _Symbol
Stephen Reynolds
Added topic For loop unwanted counts problem?
Hi, As seen the following code at 00:00 it cycles down 1000 - 0 and increments ++ on each signal found.  for ( int i= Bars - 1 ; i>= 0 ; i--) {    double ma = iMA ( _Symbol , _Period , 200 , 0 , MODE_SMA , PRICE_CLOSE ,i);
Stephen Reynolds
Added topic array out of range problem
Hi, in the following code i fail to see why im getting an array out of range error? //--- indicator settings #property indicator_separate_window #property indicator_buffers 1 #property indicator_plots 1 // Buffers double MAOsc[]; // Global variables
Stephen Reynolds
Stephen Reynolds
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 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 simple but excellent proven strategy with fixed trade management settings.

Features :
A purely mechanical system. Simply set and leave.
No martingale.
Risks are small per trade.
An optional automatic lot adjustment feature that adjusts lot size to the account balance. Or to use a fixed lot size.
Features a panel showing, bid, ask, spread, lot size balance, equity, profit/loss, stop level and broker execution speed. To find broker execution speed we press button Execution Reading.

For see for yourself go to :
MT4 Version https://www.mql5.com/en/market/product/22082 
MT5 Version https://www.mql5.com/en/market/product/41175
Free MT4 Version https://www.mql5.com/en/market/product/31538
Free MT5 Version https://www.mql5.com/en/market/product/41241
Stephen Reynolds
Prices to the uninitiated tend to look random but although variabilities happen there are predictable things that will always happen such as the oscillation of price...
Stephen Reynolds
Added topic User wall question?
Hi, how do i publish posts on the users wall?   
Stephen Reynolds
Added topic Baffled by Floating Point numbers?
Hi, im having trouble understanding why im getting the following return. In the following code : long number=( long )( 0.9553700000000001 * MathPow ( 10 , 16 ));  number = 9553700000000000 But when i move the 1st digit down to 8 as follows