DislikedI need a coder to help me code this indicator below in a way that it only displays from left of the mt4 chart to the current time in price and not extend to the far right hand side of the mt4 chart. Thanks {file}Ignored
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedI need a coder to help me code this indicator below in a way that it only displays from left of the mt4 chart to the current time in price and not extend to the far right hand side of the mt4 chart. Thanks {file}Ignored
Disliked{quote} Here is demo version that should work for you as sample. Please use as reference and you can fix yours. You can modify where you calculate MA to get typical_price. I just used period of 1 to get typical price MA. Or you can calcurate yourself like Typical price = (high + low + close)/3 basically, you have to have two buffers - one for red and one for green. now, check vol * typical price for privious bar and current bar. if current bar is bigger -> store in Buffer 1 ( green ) if current bar is smaller -> store in Buffer 2 ( red ) that is...Ignored
Dislikeddoes anyone have a simple moving average or linear weighted moving average that is coded not using "iMA". i would like to see the code as i am learning mql4 and trying to build things from scratch so that i can learn well. unfortunately most mt4 indicators use the built in mql4 shortcuts which doesn't let me understand what they are doing deeply. failing that could someone code me a simple moving average or lwma that only uses "for loops" and normal "c" like functions, and not "ima" thank you.Ignored
Dislikedif using iMA https://docs.mql4.com/indicators/ima how would one use other prices apart from ENUM_APPLIED_PRICE https://docs.mql4.com/constants/indi...ied_price_enum ? i would like to make my own price constant to apply ie (open+close+high+low)/4. tyIgnored
Disliked{quote} Those equations are written on many webpages teaching people about how the indicators are calculated. Then you can simply translate the equation into MQL4. Just search for them. I also practiced that by writing the equations into TradingView. ‘Cause I was to overlaying a Renko chart on time-based candle chart, so for any MAs for Renko, I had to program them manuallyIgnored
Dislikeddoes anyone have a simple moving average or linear weighted moving average that is coded not using "iMA"....Ignored
Disliked{quote} Get started on something yourself quickly. Start a new indicator, put in 1 buffer line, in the oncalc candle loop give that buffer the values of the close of every candle, thats the simplest buffer line that'll show up on the chart, that's a start to doing whatever you want. Next step is make your own simple moving average, every index in that buffer will have your inbuilt sma value at that index in the chart. You'll need a separate function for it, how would you do a sma function?Ignored
Disliked{quote} Get started on something yourself quickly. Start a new indicator, put in 1 buffer line, in the oncalc candle loop give that buffer the values of the close of every candle, thats the simplest buffer line that'll show up on the chart, that's a start to doing whatever you want. Next step is make your own simple moving average, every index in that buffer will have your inbuilt sma value at that index in the chart. You'll need a separate function for it, how would you do a sma function?Ignored
DislikedHello dear coders, I was wondering whether it is possible to create a script or indicator which allows the user by clicking a button to show the 7 charts, all at once, belonging to specific currency. Let me explain further; let's imagine that we have 8 buttons on an empty chart, each one representing a different currency. Something like this: {image} When you click on one of those buttons, the script or the indicator should be able to open the 7 charts belonging to that currency, being able to choose the desired Template and Time Frame. Let's imagine...Ignored