• Information
9+ years
experience
18
products
365
demo versions
0
jobs
0
signals
0
subscribers
Stephen Reynolds
Added topic Automatic Validation problem. Order Send error 131
Hi, ive tested the my EA on my current broker Vipromarkets and it test okay with no errors. But, when I send it in for automatic validation I get ordersend error 131 and a zero divide error. After looking into the problem this type of error
Stephen Reynolds Published product

39.00 USD

Break It Down is based on the Directional Movement Index and tells the trader when a market trend probably maxed out and ready to fall back. This pattern is more predictable when we apply this system only when the market is rallying but within a trading range. Because traders Sell off in fear the market often moves faster when declining! When this happens, good moves can occur. As traders are no longer interested in the trend, the volume will decline and the price will usually fall back on

Stephen Reynolds
Added topic iMAOnArray converting volume trouble?
In the following code why does it return my object AVGVol1 as 0.0 and not the average of volume it should? I see AVGVol[0] works and returns the volume okay, so this array work as far as I see‌. But it doesn't work within the iMAOnArray parameter
Stephen Reynolds Published product

Bollinger Breakout Trader tells the trader when the market is about to breakout from a non-volatile period. Non volatility usually means its building up steam for more good moves in future. A signal is formed when this switch from non-volatile to volatile occurs. These periods are measured by both Bollinger Bands and Keltner Channels. Bollinger Bands measure the standard deviation of price from the Moving Average which results in an expanding and contracting channel. Keltner Channels are based

Stephen Reynolds
Added topic buffers slowing down indicator?
Hi, in the full code attached and segment below I don't understand why it takes a long time to load when placed onto the 5m and 1m chart but is okay on the larger charts?  Reference says that it might be something to do with too
Stephen Reynolds
Added topic Objects drawn bammy when i change timeframe?
Hi, on the attatched code can someone help me see why when i change timeframe it messes around with the objects. So i always have to take indicator off the chart then place back on again to get the objects drawn as their meant to. 
Stephen Reynolds
Added topic Critical errors i cant find?
Hi, i sent the attached code to be published but the moderator has stated the following : Programs should not contain critical errors that lead to immediate termination: division by zero going beyond array boundary using an incorrect  object
Stephen Reynolds
Added topic Why OrderModify() error 1?
Hi, in the EA ive attached im stuck on why i keep getting OrderModify() error 1 and why the EA closes the order before stop is hit
Stephen Reynolds
Added topic Problems with back test on tick
Hi, with the code i send as attatchment im happy with except i dont know why it tests too slow when tested on tick test. Im thinking it might be because ive laid out everything within the OnTick event handler and so is overworking the CPU in my PC
Stephen Reynolds
Added topic Need help figuring how to make the following code work On Tick tester?
Record Session High  = A current candle closes higher than the previous candles up to 6 bars back. The following code has been made to count the candlestick record session highs up to 8 and then start drawing objects on each candle to mark the
Stephen Reynolds
Added topic My bar count attempt, have i written to much code just to count bars?
I was trying to find a way of counting bars only after a condition is true. I have coded this so it can recognise any timeframe and adjust to suit.   void OnTick () {      // Version 1      bool periodm1 =
Stephen Reynolds
Added topic Difficulty in attempt of Multi Timeframe Indicator
Ive been trying to make the following code draw a double smoothed stochastic of the 30m chart while on the 5m chart but always get a critical error and not sure why? I have tried to put PERIOD_M30 enumeration in 2nd parameter of iHigest() and
Stephen Reynolds
Added topic Is it possible to get Indicator info into an EA?
I recently purchased an Indicator from Market that I really like but I prefer it as an EA. Is there any way to code an EA to read an Indicator you place onto a chart
Stephen Reynolds
Added topic Why do I get OrderSend error on UK100?
Why in the following code do I get OrderSend error 131 on UK100 but not on EURUSD?   // Input
Stephen Reynolds
Added topic Dont understand why I cant here PlaySound()
In the following Indicator I fail to see why I cant here the PlaySound sounfile ive assigned to the SoundFile object? Also it appears to overun my CPU? // Turning Pivot Alarms On/Off Input Variables input string SoundFile = "alert.wav" ;
Stephen Reynolds
Added topic Cant see how to draw objects on all previous bars
Im trying to see why it is that the following Indicator code only creates objects on strategytester as and when each bar closes. But when I place the Indicator onto a chart it doesn't draw any previous objects? #property indicator_chart_window
Stephen Reynolds
Added topic ObjectCreate on Indicator problem
Why is it that when I place my Indicator onto a chart it only shows the objects on current day. But when I run it on tester it displays all previous days? int OnCalculate ( const int rates_total
Stephen Reynolds
Added topic cant understand "possible use of uninitialised variable" error
When i use these 2 similar codes to find candle patterns how come the 1st one has no errors on lowerShadow or upperShadow objects yet the 2nd one shows error on mainBodyBear, mainBodyBull, midBody objects. I cant figure it out? //------------- //
Stephen Reynolds
Added topic I cant understand this error in using structure
In the following code i always see error     ' MqlDateTime ' - struct or class already defined  I cant see why?  struct MqlDateTime {    int year;           // Year
Stephen Reynolds
Added topic Why cant I see upper and lower keltner lines on chart?
In the following code im trying to simply create keltner channels but i cant see why it doesnt display the upper and lower lines on the chart.  input int Keltner_Period=20; input double Keltner_ATR=1.5; input int Keltner_MaMode=MODE_SMA; //