• Information
9+ years
experience
18
products
365
demo versions
0
jobs
0
signals
0
subscribers
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?