Disliked{quote} I think a bit different from you -it is of course MT4 terminal {image}
Ignored
Thanks in advance
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
Disliked{quote} I think a bit different from you -it is of course MT4 terminal {image}
Ignored
Disliked"HMA Color nrp & mtf & alerts" Same but a kind of extended ver regarding mtf and arrows,push notify included too full arrows package included {file} {file}Ignored
Disliked{quote} Good morning Jeanlouie. Please help me look into the attached indicator. It is supposed to alert each time price reaches any of the levels, but it is not. {file}Ignored
Disliked{quote} It's by cja originally, and looks tampered with, did you try making changes to it? The issue isn't with the alert, a line is missing/removed that would make it update every tick, so it's not doing that, and the open daily level is only set once on loading.Ignored
Disliked{quote} Before anything else you need to better define what you mean in the first place, ie how is it supposed to work. The way a renko block is made is when current prices exceeds a block height away from the last block. If the block height is not fixed, and based on atr, then several blocks n candles will have to be recalculated and redrawn.Ignored
DislikedHi, can someone help me out to put a alert with sound on this indicator please. Thanks allready. {file}Ignored
Disliked{quote} Yes, I tried to figure how to do it using copy and paste, but I am stuck.Ignored
QuoteDislikedIt would look erratic but thats kind of the point
QuoteDislikedIm pretty certain this needs an Offline chart
Disliked{quote} I see you have declared buffer but I don't see any routine that fills buffer. 1. On Init() Set those as 0.0 as those buffer should be initialized as Empty or 0.0 SetIndexEmptyValue(0,lo+m6); SetIndexEmptyValue(0,lo+m6); 2. On Start() You should fill those as it happens when new tick comes typically, like for ( int i = lastbar; i >= 0; i--) { //do some cal to get your ADR values for each bar ( i) //then, fill your buffer TodayOpenBuffer[] = ??? ( some value ) ADRhighline = hi-m6; ADRlowline[] = lo+m6; } then, you can continue with draw...Ignored
Disliked...DislikedDisliked{quote} Thanks brother, you're really making my life easy day by day. This will make it perfect. Secondly, can you educate me further... is it truly possible to combine 2 different indicators into a single one (single file) without having one file (master file) reading from the 2 different files (making it a total of 3)... I am just curious on the possibility {image}[/quote if this was LABEL, it would be easy. However, since it is using TEXT, it is not easy to put on top of line - there is no reallyIgnoredIgnoredIgnored
Disliked{quote}{quote}{quote} i used this indicator in the past,please remove alert from this indicator,i dont know coding.ThanksIgnored
Disliked{quote} Ok makes sense now - add your name and change as comments to the top of the file somewhere - on line 69 youre running the block to setup the lines on loading and a new day, but the condition on line 69 only goes through once - you need to constantly update the value for dcbar, which I assume means date-current-bar, which can be udpated every tick, right now it's never updated, only set in init, dpbar!=dcbar on loading, then dpbar is set to dcbar, but dcbar never changes again - have dpbar and dcbar as longs or datetime types, and ditch the...Ignored