• Information
7+ years
experience
46
products
134
demo versions
0
jobs
0
signals
0
subscribers
Stephen Reynolds
Added topic Dont understand why ObjectCreate is created only once?
Im trying to get the object OBJ_ARROW_THUMB_UP to appear every time the if condition is true when i test over a few days. Code as follows : input int MaPeriod = 200 ; input ENUM_MA_METHOD MaMethod = MODE_EMA ;   input ENUM_APPLIED_PRICE
Stephen Reynolds
Added topic Trouble moving stop to pivot points?
What Im trying to get my EA to do is move the stop to each previous pivot as price moves into profit but without being slowly trailed.  // Input
Stephen Reynolds
Added topic Cant find and use trendline angle
What I want to do is to create a trendline with angle based on 2 anchor points and then find the angle using ObjectGetDouble() so it can help me do various trading tasks such as finding chart patterns. See the code below : // OnTick() event
Stephen Reynolds
Added topic ObjectCreate() enumeration missunderstanding?
Why is it that within ObjectCreate() parameters when I set enumeration OBJ_TREND it understands anchor points okay and draws the line correctly like so void OnInit () {      // Finding 1st highest high on price (3 bars
Stephen Reynolds
Added topic ObectCreate() function sub window parameter?
In the code below I'm trying to draw a simple object on a sub window : // Input variables input int KPeriod = 14 ; input int DPeriod = 3 ; input int Slowing = 3 ; input ENUM_MA_METHOD StochMethod = MODE_SMA ; input ENUM_STO_PRICE StochPrice =
Stephen Reynolds
Added topic Trouble understanding ArrayMaximum () function?
Im trying to write a short code that finds the highest value of iStochastic from the last 3 bars using the ArrayMaximum () function . void OnInit () {      double s1 = iStochastic ( _Symbol , _Period
Stephen Reynolds
Added topic Cant understand ObectCreate() function sub window parameter?
Hi What im trying to do is get the ObjectCreate () function to draw a trendline between 2 highestHighs on the price chart and stochastic on the stochastic chart. Ive managed to code this so far but don't know why ObjectCreate() doesn't draw any
Stephen Reynolds
Added topic Finding Stochastic Highest/Lowest
Hi, is there anyway of finding the highest and lowest points on an indicator such as stochastic like you can finding the highest and lowest points using iHighest() or iLowest() function on the price chart
Stephen Reynolds
Registered at MQL5.community