Requests & Ideas - page 118

 

...

Maxwell10

It is attached to the previous post now. Download it as any usual indy now. Will continue (together with you) working on that indy when all this issues about attachments are solved and then we can add whistles and bells

Wish you a pleasant weekend

Maxwell10:
Mladen please what you ask of me is futile for I have no experience in mql coding although I did just try to copy and paste into metaeditor to no avail,all in all I really wasn't sure if this formula would even be useful in currency markets,but since you mentioned a potential use for the D1 timeframe perhaps there can be an option in parameters for percentage to be tweaked if one so chooses to trade such lower timeframes,but since I heard the less than 15 percent originally that should be the original default settings,remember also this formula is just an idea so it ain't set in stone ,if there a better percentage than can be used for each timeframe let's try to find it together but in the meantime anything less than 15 percent is for D1 strictly, also about the display it can just be an arrow on the candle that met criteria ,or if you got something better in mind like lines in AC/AO or something anything will do I'll just be good if somehow we can bring this thing to life to see if has legs and wings! thanks,Max
 

I am humbled

For you to be able to do the things you do and then to spend the time to actually produce this formula onto a chart,I'm truly thankful for all you do for all of us around here walking these halls ,now onto the meat of this topic I didn't fully understand and still don't quite know what you meant from the first and 2nd post about attachments not working but after seeing the most primitive[LOL with all do respect!} indicator you ever made with the only option to choose min and max period! I think I know what you mean so here's until everything's good on your end and then we can get the sprucing and tidying up along with the bells and the whistles going!! Cheers,thanks Max

 

[Request Indicator] i need indicator show all tf and can include more indicator

i need indicator show all tf and can include more indicator

 

Hi Xsoftz,

Can you explain a little more what you are looking for.

 
mrtools:
Hi Xsoftz, Can you explain a little more what you are looking for.

i need tools show any tf and can add indicator MACD + STO + BB and ZIGZAG

Files:
ss6.jpg  399 kb
 

It should be few similar indicators on this thread https://www.mql5.com/en/forum/179673 or this thread https://www.mql5.com/en/forum/178673 or this thread https://www.mql5.com/en/forum/176023 (by links to download).

 
newdigital:
It should be few similar indicators on this thread https://www.mql5.com/en/forum/179673 or this thread https://www.mql5.com/en/forum/178673 or this thread https://www.mql5.com/en/forum/176023 (by links to download).

Hello Admin

i think u can fix bug u webboard. i not upload files and more.

thankyou.

 
u can fix bug u webboard.

Developers are fixing everything after the forum migration.

This process is going on now for whole this weekend.

if you have some bug or issue and so on - post about it here https://www.mql5.com/en/forum/178632 and we will resent it to the forum designers.

As to indicators so you can search those threads:

newdigital:
It should be few similar indicators on this thread https://www.mql5.com/en/forum/179673 or this thread https://www.mql5.com/en/forum/178673 or this thread https://www.mql5.com/en/forum/176023 (by links to download).

as I remember many similar indicators.

Do not have time to search now.

If you will not find so I will try to find, or Mladen or MrTools may code here.

But you may try to find something similar.

 

How to read

Hello mladen,mr tools[you can get on this too if you see something worth browsing] it's me again with this indy you hit it right on the head,turns out this formula was meant for d1 charts only I applied to eur/usd d1 chart and from watching the indy along with candles i'm having trouble reading which candle we are to look for when criteria for formula is met [maximum high of the last 30 days minus the minimum low of the last ten days divided by the close should be less than 15 percent] can you do your thing with this and add an arrow-alert on candle that fits what we are looking for also remember this formula is not set in stone so if any other further enhancements,modifications you see can be made feel free,and since you had a keen eye off the back to figure out the 15 percent was for d1 timeframe,any ideas on what percentages maybe suitable for smaller timeframes? thanks any feedback is appreciated ,Max

mladen:
Best to try it out

Here is the indicator in this form (I still have troubles with attachments). Just copy it to metaeditor and paste it to and then save it as Volatility indi. As far as I see, it can reach those percents on forex symbols daily time frame only (lower time frames have much smaller changes) Added a multiplication with 100 in order to bring it to those ranges

#property indicator_separate_window

#property indicator_buffers 1

#property indicator_color1 PaleVioletRed

#property indicator_width1 2

//

//

//

//

//

extern int MaxPeriod=30;

extern int MinPeriod=10;

double result[];

//------------------------------------------------------------------

//

//------------------------------------------------------------------

//

//

//

//

//

int init()

{

SetIndexBuffer(0,result);

return(0);

}

int deinit()

{

return(0);

}

int start()

{

int counted_bars=IndicatorCounted();

if(counted_bars<0) return(-1);

if(counted_bars>0) counted_bars--;

int limit=MathMin(Bars-counted_bars,Bars-1);

//

//

//

//

//

for(int i=limit; i>=0; i--) result = 100.0*(High[ArrayMaximum(High,MaxPeriod,i)]-Low[ArrayMinimum(Low,MinPeriod,i)])/Close;

return(0);

}

 

Max

Try this version. Did not add arrows, since I have trouble deciding which arrow should it be (it is not a directional indicator, hence I can not decide about the arrow type). What I did I added histogram which appears when the value of the indicators exceed the value of the desired level (you can set it in parameters)

Here is an example of weekly chart with 15 percent level chosen and how it looks like then

PS: the picture cut-off is worked on by the developers of the web

Maxwell10:
Hello mladen,mr tools[you can get on this too if you see something worth browsing] it's me again with this indy you hit it right on the head,turns out this formula was meant for d1 charts only I applied to eur/usd d1 chart and from watching the indy along with candles i'm having trouble reading which candle we are to look for when criteria for formula is met [maximum high of the last 30 days minus the minimum low of the last ten days divided by the close should be less than 15 percent] can you do your thing with this and add an arrow-alert on candle that fits what we are looking for also remember this formula is not set in stone so if any other further enhancements,modifications you see can be made feel free,and since you had a keen eye off the back to figure out the 15 percent was for d1 timeframe,any ideas on what percentages maybe suitable for smaller timeframes? thanks any feedback is appreciated ,Max
Reason: