
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
Mladen,
This indicator keeping the track of fluctuating of spreads : spread_recorder.mq4
So is it possible for you to code spread ratio(ask-bid ratio) in a sub window?Thanks.nevar
here is one indicator that is displaying spreads in a sub window (spreads are calculated as you suggested since the MarketInfo(Symbol(),MODE_SPREAD) shows false spreads a lot of times) : spread_tick-by-tick.mq4
Updated pivot points : pivot_points_nmc.mq4
This version (with a description what is specific in it) was originally posted here : https://www.mql5.com/en/forum/general
Fudo
I thought that I posted the version that does have a Sunday fix feature but it seems that I was wrong
.
________________________
Here is a version that does fix Sunday data (it actually skips that funny 1 or 2 hour data Sunday usually has, and, if used, gives completely wrong pivot points. Alpari does not have that Sunday data, but with time shift added, all of a sudden it artificially starts to have it (time from Monday 00:00 to 01:00 becomes Sunday with hour shift set to 1) and that is causing that error)
So, the option added is FixSundays. If set to true, it will skip that data, and then pivot points become like this :But if you set the hour shift to 1 and turn the FixSundays to false, you are going to get the same thing as before (for reasons I have explained above) So it is much safer to use FixSundays and ignore any eventual Sunday data all the time
regards
Mladen
hi mladen
I noticed the pivot point indicator you made is doing something strange on the AlpariUS chart for Daily Pivots. For some reason Monday's reading goes off the chart when you set the TZ to 1 for the AlpariUK TZ.
Would you mind looking at this for me?
ThanksUpdated version posted here : https://www.mql5.com/en/forum/general
Pivot point indicator using high-low range for calculation : pivot_points_-_range_nmc.mq4
Original (with detailed description) was posted here : https://www.mql5.com/en/forum/general
Ben
This should do it
Pivot (close in the case of your indicator) is left out from the chart simply because to keep all the 8 support and resistance lines (no room for any more drawing buffer, metatrader 4 "good old" limitation)PS: default time frame is weekly, but you can choose other time frames with this one (so, it is not just a weekly indicator)
regards
Mladen
I'm wondering if someone can modify this weekly pivot indicator to use the following formulas for the prior week range:
Range = high - low;
H4 = close + (Range * 1.1/2.0);
H3 = close + (Range * 1.1/4.0);
H2 = close + (Range * 1.1/6.0);
H1 = close + (Range * 1.1/12.0);
L1 = close - (Range * 1.1/12.0);
L2 = close - (Range * 1.1/6.0);
L3 = close - (Range * 1.1/4.0);
L4 = close - (Range * 1.1/2.0);
Thanks so much to anyone who might help.
BenUpdated version posted here : https://www.mql5.com/en/forum/general
Updated vortex indicator : vortex__mtf_nmc.mq4
Sentiment zone oscillator & divergence from here: https://www.mql5.com/en/forum/general updated to be compatible with new mt4 builds.
Sentiment zone oscillator with diveregences
Daniel
Here you go
This is the sentiment zone oscillator with divergence added to it.
Hello Mladen,
Would you please be so kind and add divergencies to the latest Sentiment Zone Oscillator?
Thank you very much and have a nice Sunday,
Danielupdated version posted here: https://www.mql5.com/en/forum/general
Schaff trix Trend Cycle 2 from here: https://www.mql5.com/en/forum/general updated to be compatible with new mt4 builds.
Blau - ergodic tvi 3 from here: https://www.mql5.com/en/forum/general updated to be compatible with new mt4 builds and upgraded with 20 moving average possibilities.
extern string __0 = "SMA";
extern string __1 = "EMA";
extern string __2 = "Double smoothed EMA";
extern string __3 = "Double EMA (DEMA)";
extern string __4 = "Triple EMA (TEMA)";
extern string __5 = "Smoothed MA";
extern string __6 = "Linear weighted MA";
extern string __7 = "Parabolic weighted MA";
extern string __8 = "Alexander MA";
extern string __9 = "Volume weghted MA";
extern string __10 = "Hull MA";
extern string __11 = "Triangular MA";
extern string __12 = "Sine weighted MA";
extern string __13 = "Linear regression";
extern string __14 = "IE/2";
extern string __15 = "NonLag MA";
extern string __16 = "Zero lag EMA";
extern string __17 = "Leader EMA";
extern string __18 = "Super smoother";
extern string __19 = "Smoother";