You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello Mr mladen
Could you please code this indicator?
https://www.youtube.com/watch?v=ZFKrjrAKtx4&t=366s
It displays 3 chart on the same screen. It's very helpful for multiple tame frames strategies.
Attached is the indicator still working but not perfectly because my membership password expired.
Thanks
Merka
Those are simply borderless windows combined in one
You can find scripts that can make display windows that way in the elite indicators thread
Dear mladen or mrtools,
It would be a great help if you could colour candles in the main window to correspond with QQE please? The rules are,
1) For a bullish cross over between the ‘Dimgray’ and ‘Lime’ lines, below ‘0’ line, candle should turn ‘GREEN’. Candles should turn from ‘GREEN’ to ‘LIME’ when it goes above ‘0’ line.
2) For a bearish cross over between the ‘Dimgray’ and ‘Lime’ lines, above ‘0’ line, candle should turn ‘MAROON’. Candles should turn from ‘MAROON’ to ‘RED’ when it goes below ‘0’ line.
3) For any candles between the upper and lower bands, candle should turn ‘GRAY’.
That indicator should be rewritten (it needs only 2 out of the 40 buffers it is using, for start)
Hello,
the only programmer that I know is you. Would it be possible that you could do that?
As long as it doesn't take to much time.
Thank you.
D.
Hello Friends and seniors,
Please someone make this indi MTF with added alerts
In the init(), using SetIndexStyle() and using clrNONE
After I have changed the clrNONE it will not load - I have attached the original indicator with the colours still in the code.
If they could be changed so I can see what I did wrongly - thanks.
TEAMTRADER
Hi friends,
I use the "daily open line" indicator and it has the setting (default) "TimeZoneOfData = 0"
My broker is +2GMT.
What should be the "TimeZoneOfData = 0" setting in this case?
Thank you.
Hello Friends and seniors,
Please someone make this indi MTF with added alerts
After I have changed the clrNONE it will not load - I have attached the original indicator with the colours still in the code.
If they could be changed so I can see what I did wrongly - thanks.
TEAMTRADER
Hello everyone,
does something like this exist (S/R indi based on mean shift) in mt4 ? More on it + code can be found here:
http://jon.io/machine-beats-human-using-machine-learning-in-forex.html
Where exactly did you change that? Please post your code changing attempt
From the original code the changes were:
ORIGINAL lines 52 - 55
#property indicator_color1 clrLightSalmon
#property indicator_color2 clrPaleTurquoise
#property indicator_color3 clrDeepSkyBlue
#property indicator_color4 clrOrangeRed
#property indicator_color5 clrBlue
#property indicator_color6 clrRed
NEW lines 52 - 55
#property indicator_color1 clrNONE
#property indicator_color2 clrNONE
#property indicator_color3 clrNONE
#property indicator_color4 clrNONE
#property indicator_color5 clrBlue
#property indicator_color6 clrRed
ORIGINAL lines 123 - 126
SetIndexBuffer( 0, uptrend); SetIndexStyle(0,DRAW_HISTOGRAM);
SetIndexBuffer( 1, dntrend); SetIndexStyle(1,DRAW_HISTOGRAM);
SetIndexBuffer( 2, fast); SetIndexStyle(2, DRAW_LINE);
SetIndexBuffer( 3, slow); SetIndexStyle(3, DRAW_LINE);
NEW lines 123 - 126
SetIndexBuffer( 0, uptrend); SetIndexStyle(0,DRAW_HISTOGRAM,clrNONE);
SetIndexBuffer( 1, dntrend); SetIndexStyle(1,DRAW_HISTOGRAM,clrNONE);
SetIndexBuffer( 2, fast); SetIndexStyle(2, DRAW_LINE,clrNONE);
SetIndexBuffer( 3, slow); SetIndexStyle(3, DRAW_LINE,clrNONE);
TEAMTRADER