Re: Chaos Visual Averages Indicators for MT4
701"Only the price on the chart can show the entrance to the deal..."
Have you tried this version?PAWPUSS wrote: Wed Dec 03, 2025 4:26 am Hello , I have been searching with no success for a version of this indicator that has fast and slow wpr zero cross alerts and/or arrows.
Anyone kind enough to paste one here if it exists.
I found a post requesting this in the first few pages but I cant find if it was coded .
Many thanks.
Hello, working on it, since there are only so many characters allowed in the iCustom call trying something we used a long time ago to bypass that, not sure if it will work in the new mt4 but will see.PAWPUSS wrote: Wed Dec 03, 2025 9:43 pm Hello Mr.Tools, thanks for your time and the indicator ... much appreciated !
yes I found this one which has the slow wpr/histo cross zero.
However I cant find one with the Fast wpr zero cross arrows/alerts which I think gives an excellent earlier signal, especially when fast and slow have signalled overbought/oversold conditions.
This Fast wpr zero cross arrows/alerts would be an excellent addition to this indicator....
Can you code this if you have the time??
Most grateful
Try, seems okay only thing is the mtf arrow shift (arrows on last) not working yet, haven't figured out how to get it to work when using multiple arrows.PAWPUSS wrote: Wed Dec 03, 2025 9:43 pm Hello Mr.Tools, thanks for your time and the indicator ... much appreciated !
yes I found this one which has the slow wpr/histo cross zero.
However I cant find one with the Fast wpr zero cross arrows/alerts which I think gives an excellent earlier signal, especially when fast and slow have signalled overbought/oversold conditions.
This Fast wpr zero cross arrows/alerts would be an excellent addition to this indicator....
Can you code this if you have the time??
Most grateful
Hi mrtools, can you tell me which buffers to identify each histo bar from this indicator attached?mrtools wrote: Thu Feb 29, 2024 6:16 am Chaos (Haos) Visual Averages with extra Price Options
Working on it, made a wpr function because wanted to use prices in the wpr calculation plus am too lazy to learn how to use built in indicators in mt5. Anyway, as a start made this mt4 version with the extra prices on the way to making hopefully a mt5 version close to this one.
Hello this is how the histogram buffers are set up:johnere wrote: Mon Dec 08, 2025 5:46 pm Hi mrtools, can you tell me which buffers to identify each histo bar from this indicator attached?
I used buffer 2 for up histo and buffer 3 for down histo to draw vertical lines on all of them with empty value and they wont draw on them all, so i must be missing something with the buffers. I dont use the darker color histo just the clear colors
Thanks in advance
Code: Select all
SetIndexBuffer(0, Up1, INDICATOR_DATA); SetIndexStyle(0, DRAW_HISTOGRAM,EMPTY,inpHistWidth);
SetIndexBuffer(1, Dn1, INDICATOR_DATA); SetIndexStyle(1, DRAW_HISTOGRAM,EMPTY,inpHistWidth);
SetIndexBuffer(2, Up2, INDICATOR_DATA); SetIndexStyle(2, DRAW_HISTOGRAM,EMPTY,inpHistWidth);
SetIndexBuffer(3, Dn2, INDICATOR_DATA); SetIndexStyle(3, DRAW_HISTOGRAM,EMPTY,inpHistWidth);
SetIndexBuffer(4, Mid, INDICATOR_DATA); SetIndexStyle(4, DRAW_HISTOGRAM);Code: Select all
#property indicator_color1 clrGreen
#property indicator_color2 clrRed
#property indicator_color3 clrLimeGreen
#property indicator_color4 clrSandyBrown
#property indicator_color5 clrDarkGray