Yellowbeard
Yellowbeard
Friends

Add friends via their profile or user search and you will be able to see if they are online

Yellowbeard
Added topic Scrolling Charts
Trying to write a script to scroll a chart continuously. Beginning with a pause of 5 seconds. Not sure if this is the right direction. Could someone tell me if this code is the right way to accomplish this? Thanks
Yellowbeard
Added topic Scrolling Multiple Charts
Is there a way to scroll multiple charts, at the same time, from the same point, on each chart? Thanks
Yellowbeard
Added topic Arrow with Text Question
The following code allows you to place an arrow, at a specific candle, at a specific time. I wanted to know if there is a way to display a value, ( text ) above a down arrow and below an up arrow? Which will signify the value at that point
Yellowbeard
Added topic Is there something that I'm doing wrong?
It's been a while since I've been back to coding, but the following code doesn't seem to return the values I'm looking for, just zeros. double vDO=iOpen("NZDUSD",1440,0); // Daily Open double vDC=iClose("NZDUSD",1440,0); // Daily Close Alert("vDO =
Yellowbeard
Added topic Period Separator Question
Can anyone show me how to place a VLine at the start of the day, for a specific time. I am on EST and would like to show, on my chart, the start of the day, which is midnight. My chart time is 5 hours ahead of EST. ObjectDelete("DayStart");
Yellowbeard
Added topic Question about positive and negative numbers
I've been trying to establish the cross above or below zero, on an indicator. I am comparing the value of Bar #2 to Bar #1. Not Bar #0. If Bar#2 0 then cross up. If Bar#2 > 0 and Bar#1 < 0 then cross down. Should be simple. If below 0, number
Yellowbeard
Added topic Ask and Bid Question
How do I obtain the Bid and Ask of a specific currency pair on a specific timeframe, so that I can calculate the spread
Yellowbeard
Added topic Linear Weighted Moving Average
Any no where I can find a Linear Weighted Moving Average? Thanks
Yellowbeard
Added topic Has anyone had this happen to them?
Yesterday morning, I was working on a EA, when all of a sudden, the trade that was opened, had a TP, when one wasn't entered. I thought that maybe I had accidently entered one when I was working on the EA. So I deleted it. Later, in the afternoon, I
Yellowbeard
Added topic Chart Question
Is it possible to find the value of a Ichimoku cloud for a 15 minute timeframe, while on a 1 hour, to display on a 1 hour chart? Thanks
Yellowbeard
Added topic Pivot Point Indicator
I've seen, in several places, ones using a Pivot Point Indicator that displays the pivot points for each day ( Period ) on a chart with labels and values at each support and resistance line. I was wondering if someone could show me where to find this
Yellowbeard
Added topic Past Values of Indicator
Can anyone tell me how to find the past value of a value found within an indicator? I can find past values of Open, Close, High, Low and Volume, but not sure how to find past values of indicators. Thanks
Yellowbeard
Added topic Drawing Objects Question
With the following code, I can place a dot at the bottom of a candle, for a specific value. I would like to place a second dot below the first, for a second value. Can anyone show me how to accomplish this? I would also like to know how to add
Yellowbeard
Added topic Drawing Lines Question
I want to be able to draw a series of lines, 30 pips apart, from the high of the day to the low. The code below accomplishes this, but no matter where I put the code in my EA, some lines don't draw. I think it's because of other objects being drawn
Yellowbeard
Added topic Identifying the Candle
I'm trying to identify candles where, a buy candle has more selling than buying, and a sell candle has more buying than selling. I have the values , but drawing the arrows to mark the candle is a bit of a problem. The following code is suppose to
Yellowbeard
Added topic Candle Question
Can anyone point me in the right direction, as to, how I would be able to draw an arrow on each candle that meets a certain criteria? Not just an arrow on the first candle, where the criteria is first met. ObjectCreate("DwnSymbl", OBJ_ARROW , 0
Yellowbeard
Added topic Modifying Multiple Trades
Can someone point me in the direction where I find information on how to modify multiple orders, where I can modify the TP of all open orders to the same TP value as the first order opened? Thanks
Yellowbeard
Added topic Modifying Orders Question
I'm trying to modify buy and sell orders , but having a problem. When I'm trying to modify a buy, my code is modifying the buy, not only by the code that I have for modifying buys, but also by the code that I have for modifying a sell. Which causes
Yellowbeard
Added topic ICustom Question
I've been trying to import values from an indicator into my EA, without success. iCustom imports values stored in buffers 0,1,2,3 etc. from an indicator. So far, these values are either 0.00000 or 2147483647.00000 ( empty value). I've tried adding
Yellowbeard
Added topic Limit Orders
Would anyone know how to place a limit order at a specific price? I'm trying to place them one pip above and/or below current price. Not having much luck. Thanks! double SpreadA = (Ask - Bid); double M=((Bid+SpreadA)+1*Point) TakeTPB =
12