Sadly, I find neither the slope lines, nor do I have a histo differentiation (thick lines vs thin lines) any longer.mrtools wrote: Fri Oct 23, 2020 2:47 am Added the line coloring for the slow histo outside line, will work on the arrows and mtf as time allows.
Re: Chaos Visual Averages Indicators for MT4
212Not sure seems to be working for me.josi wrote: Fri Oct 23, 2020 5:42 pm
Sadly, I find neither the slope lines, nor do I have a histo differentiation (thick lines vs thin lines) any longer.
Re: Chaos Visual Averages Indicators for MT4
213[quote=mrtools post_id=1295421720 time=1603466574 user_id=4864807]
Thanks; I think I have the lines now.
The screenshot (1) shows where I think (only an example) the histo colouring of the WPR subwindow should be
(fast and slow slope up - blue; fast and slow slope down - salmon)
Screenshot (2):
I reproduced the WPR with your StochFiltered
so:
whenever slow+fast Stoch = Blue = WPR histo blue (up)
whenever slow+fast Stoch = Red = WPR histo red (down)
(except: for up: if < 20 no up signal in histo; for down: if >80 no down signal in histo)
Thanks; I think I have the lines now.
The screenshot (1) shows where I think (only an example) the histo colouring of the WPR subwindow should be
(fast and slow slope up - blue; fast and slow slope down - salmon)
Screenshot (2):
I reproduced the WPR with your StochFiltered
so:
whenever slow+fast Stoch = Blue = WPR histo blue (up)
whenever slow+fast Stoch = Red = WPR histo red (down)
(except: for up: if < 20 no up signal in histo; for down: if >80 no down signal in histo)
Re: Chaos Visual Averages Indicators for MT4
214Dear Mr. Tools,mrtools wrote: Fri Oct 23, 2020 2:47 am
Added the line coloring for the slow histo outside line, will work on the arrows and mtf as time allows.
Any update on the MTF+arrows version?
Thanks!
Re: Chaos Visual Averages Indicators for MT4
215Added the mtf, on the alerts and arrows gonna have to figure out a work around, in mt4 you are only allowed think it is around 63 characters in your iCustom call and am right at that now, so working on a way around that.Anjum wrote: Wed Oct 28, 2020 12:16 am
Dear Mr. Tools,
Any update on the MTF+arrows version?
Thanks!
Re: Chaos Visual Averages Indicators for MT4
216Thanks! will wait for the rest of itmrtools wrote: Wed Oct 28, 2020 4:39 am
Added the mtf, on the alerts and arrows gonna have to figure out a work around, in mt4 you are only allowed think it is around 63 characters in your iCustom call and am right at that now, so working on a way around that.

Re: Chaos Visual Averages Indicators for MT4
217can we get alerts and arrows on leaving OB/OS?mrtools wrote: Wed Oct 28, 2020 4:39 am
Added the mtf, on the alerts and arrows gonna have to figure out a work around, in mt4 you are only allowed think it is around 63 characters in your iCustom call and am right at that now, so working on a way around that.
Re: Chaos Visual Averages Indicators for MT4
218Hi MrTools,
I'm running through some testing with this tool, looking great so far!
Would you mind letting me know what the buffers are for the slow and fast line please?
Thanks and have a great weekend!
Mark
Re: Chaos Visual Averages Indicators for MT4
219Buffer for the fast wpr = #7 and the slow wpr #18.mwaschkowski wrote: Sat Oct 31, 2020 8:28 am
Hi MrTools,
I'm running through some testing with this tool, looking great so far!
Would you mind letting me know what the buffers are for the slow and fast line please?
Thanks and have a great weekend!
Mark
- These users thanked the author mrtools for the post:
- mwaschkowski
Re: Chaos Visual Averages Indicators for MT4
220OK, great thanks!
I just tested and ran into an issue whereby the numbers coming out didn't match the on screen values. I used an earlier version of haos to get this result:
in which everything lined up nicely. But when I tried with the newer version I got:
Here is the code that I used:
Code: Select all
string haosName = "HaosVisual averages";
haosName = "Haos Visual - averages (divergence + alerts + mtf)";
int firstWprSmoothingPeriod = 21;
enMaTypes maType = ma_hull;
int firstWprPeriod = 51;
int secondPeriod = 96;
//double haos= iCustom(NULL,0,haosName, firstWprSmoothingPeriod, maType, firstWprPeriod, 30, -30, secondPeriod, maType, secondPeriod, 40, -40, false,5, i);
double haos= iCustom(NULL,0,haosName, PERIOD_H1, 0, firstWprSmoothingPeriod, maType, firstWprPeriod, 30, -30, secondPeriod, maType, secondPeriod, 40, -40, false,18, i);
Thanks,
Mark