david
david
Friends

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

david
Added topic not sure how to plot histogram on chart with defined top and bottom
Hello forum, hope you might help me with this. I put together and indicator that basically showed me in histogram form on separate chart window where a moving average (properties variable) was in relation to a fixed Bollinger Band of 1 standard
david
Added topic Is there and "if' limit? "if" too complex expression error
Hello forum, would someone mind telling me if there is a limit to the number of "if" functions you can use in a section of code, and if yes, what the limit is. I am getting the following as an error when compiling my code: "if"
david
Added topic Combining SAR with other conditions, I am a little confused?
Hi all, just a quick question. I want to combine PSAR with other conditions as a filter for my entry and exit signals but am not sure when the PSAR value is calculated and plotted on my chart. My reading of the maths behind PSAR is that is based on
david
Added topic Can not resolve last compiling error: Unbalanced Parenthesis (HELP PLEASE!!)
Hello Forum I am a virtual newbie but have managed to adapt some indicators to work the way I want while I start to learn how to code They all work nicely when applied to the chart individually but I wanted to simplify and just have my indicator draw
david
Added topic is there a pivot point indicator with adjustable time settings?
Hello forum, I like trading a market where the main day session is far more meaningful when it comes to determining pivot levels, than using the entire 24 hour market period. That is, I always manually calculate pivot levels based on previous day
david
Added topic entry requirment relative to previous candle high or low
Hello everyone, I am putting together a strategy and I want to use previous candle highs or lows as a final filter for entry For example if conditions A, B and C are satisfied at bar close, enter only if the price is above (for long trades) or moves
david
Added topic Trying to understand "Lookback" and == in simple words
Hello everyone, hope someone might help me to understand the meaning of "Lookback" and == I was looking at an example in the code base and this newbie is not familiar with these basics yet In this example
david
Added topic Ask and Bid Line: Can you change line thickness?
Hello everyone. I have a personal preference to use light color background templates(just find it a little easier on my eyes), but unfortunately a draw back is I find it difficult to see the Ask and Bid lines, particularly the Bid line, as it appears
david
Added topic Object Visibility not behaving normally
Hi, embarrassed to ask such a basic question, but can't work out what I have changed to cause the problem. I have a template that I have been using for many months. Have varied indicators, added and removed objects (lines, trendlines etc) All has
david
Added topic Looking for solution to changing grid size
Just wondering what the best solution might be to varying the grid size on charts in MT4 (other than decimal type intervals). I notice to 2 grid indicators in the codebase that allow horizontal grid lines to be drawn on the charts But despite viewing
david
Added topic local bar time
Hello, hoping someone might be able to advise me on this. I am wondering if there is a way of showing your local time zone (in addition to broker time) when you hover the cursor over a bar on MT4. I have found clocks that will display local and
david
Added topic DLL imports, what is it that you are allowing?
Hoping someone might explain in basic terminology, what it is you are actually giving metatrader permission to do, when you click on "allow DLL imports ". I checked the help topics and see plenty of references to DLL, but not the basic
david
Added topic When indicator values determine price bar appearance, or addition of symbols to charts, what is this called?
Hi hope someone might point this newbie in the right direction. I was looking at a strategy recently where the main chart price bars changed color dependent on the plot of the MACD: -Green price bars when the MACD line above signal line and the zero
david
Added topic what is best hardware & setup to run multi EA's and MT4
Hope one of the computer savvy forum members might help me with this. I want to upgrade an old laptop to something (a desk top PC) that I can run multiple EA's and versions of MetaTrader 4 on. I have 2 questions: 1. Is it more effective to run
david
Added topic Can you have an EA that closes positions only?
I am thinking about a scenario where you may have opened a position manually and price spikes to a point where statistically speaking, it would be a good exit Say at the upper Bollinger Band for example (something other than a simple points or pips
david
Added topic how do you add 2 data sets together
just wondering if someone might advise me on the correct or most efficient way of adding 2 data sets together I downloaded some historical data which finishes at end of 2010 for various currencies I want to copy it in to the history folder of an
david
Added topic arranging indicators in MT4, quick question?
Just wondering if someone might tell me if there is a maximum number of indicators that can be used in MetaTrader 4 at one time Like a lot of newbies I downloaded many to simply see what they do and explore, but notice that some are greyed out in my
david
Added topic horizontal line showing only to right of price bar, how do you draw?
I am hoping that someone might tell me how to reference or set up a horizontal line , that when added to the chart will only appear in the area to the right of last price bar or candle and adjacent the price axis. I am happy to add the lines
david
Added topic Help needed with conditional IF when building an indicator
Hello, I have been using an indicator that works great and involves the plot of a histogram (green bar when indicator value of bar i exceedes that of bar i+1, red bar when indicator value of bar i is less than that of bar i+1, yellow histogram for
david
Added topic newbie needs some help with conditional if
Hi hoping someone might advise me what I am doing wrong here i have a indicator that works well with a standard condition like: if x(i) > x(i+1) UpBuffer[i] =1; else if x(i)<x(i+1) DownBuffer[i]=-1, else ZeroBuffer[i]=0.5 however I want to add