Big and Mid Figure

FTMO Trader Scouting

foreigner

Est. 12480 Hours and Counting
Does anyone know how to modify this indicator so that the big and mid figure lines show only as a short line of reference?!
 

Attachments

  • ICT Big and Mid Figure.ex4
    3 KB · Views: 198
Do you have the MQL4 version of the file? Or just the compiled version?
 
I wrote a "Figures" script, which places the lines after the last price, as I found the available indicators cluttered the screen.

Place in the scripts directory and compile.
double click to place or remove Figures lines

Source code included below.
EDIT: - just realised that there is a small error.
if you are using a 4 digit broker change:
if(Digits == 4) {points = pips/1000 ; return(NormalizeDouble(points,Digits));}
to
if(Digits == 4) {points = pips/10000; return(NormalizeDouble(points,Digits));}

ditto for a 5 digit broker, although will work without the change.
 

Attachments

  • KSRfigures-K3.zip
    1.9 KB · Views: 137
Thanks Rod thats pretty damn useful! especially the ability to turn on and off, do you know if this can be done via a button on a toolbar or just through the navigator?

Also, is it possible to make the lines thinner and change the colour/style?


Jack I just have the compiled version but it looks as though Rods got something even better!
 
foreigner said:
Thanks Rod thats pretty damn useful! especially the ability to turn on and off, do you know if this can be done via a button on a toolbar or just through the navigator?

Also, is it possible to make the lines thinner and change the colour/style?

The line thickness, and much more, can be configured at runtime, if you un-comment
#property show_inputs. refer to the code.

Alternatively you can permanently change the following values in the code
extern int InstroFigure_Line_Width = 2 ;
extern int MidFigure_Line_Width = 3 ;
extern int BigFigure_Line_Width = 4 ;

ditto for colours etc. All my stuff is configured for a white screen background, so you may desire to change colours if you use a black background etc.

I wrote the script from scratch a couple of years ago and now use it without much thinking about it. Upon revisiting I realised that it need a few minor tweaks. Attached is the latest version.

Maybe one of these days I will get around to coding a button on the toolbar, this was somewhat difficult to code in MT4 build pre 600.
 

Attachments

  • KSRfigures-K4.mq4
    7.1 KB · Views: 138
foreigner said:
..... do you know if this can be done via a button on a toolbar or just through the navigator?...

Another option is to assign a Hotkey to the script.

Right click on the script and select create Hotkey.

Attached is a list of built-in Hotkeys. Suggest that you do not overwrite those that are already assigned.
 

Attachments

  • MT4 Hotkey Sheet.pdf
    116.5 KB · Views: 121
Rod you are a legend.

BTW Rod Ive tried assigning hot keys to indicators and it only opens the edit window, is hot key functionality exclusive to scripts?
 
An Indicator can be attached to a Chart via a Hotkey, although not much value in using Hotkeys for Indicators, imho.

Suspect you are referring to the Inputs Dialog; ie not the MetaEditor window.

refer to below link for information on the use of Hotkeys.

http://articles.mql4.com/189
 
If you desire to extend the use of Hotkeys via Widows, I suggest -

http://www.autohotkey.com/
 
Rod, is it possible to add labels to the institutional levels ? ie 20, 50, 80, 00

The reason is that on a HD monitor MT4 prices are almost unreadable so labels to quickly identify levels would be useful.

Thanks for your time I do appreciate it.

F
 
foreigner said:
Rod, is it possible to add labels to the institutional levels ? ie 20, 50, 80, 00

The reason is that on a HD monitor MT4 prices are almost unreadable so labels to quickly identify levels would be useful.

Thanks for your time I do appreciate it.

F

The 20 and 80 are thin, 50 medium, and Big Figure a thick line.
Furthermore, place the cursor on the line and the prices will display. Additionally, the beginning of the bubble's second line displays the figures ie 20,80, 50 or 00.
 
Re: KSR Figures

Rod do you know if KSR figures K4 works with MT4 version 4 build 670? Im having issues with a new install.

Cheers
F
 
Re: KSR Figures

foreigner said:
Rod do you know if KSR figures K4 works with MT4 version 4 build 670? Im having issues with a new install.

Cheers
F

what is the issue? There is a K5 version if you want it.
 
Just wont execute on chart.

New version would be appreciated thanks, its something I use every day..
 
foreigner said:
Just wont execute on chart.

New version would be appreciated thanks, its something I use every day..

OK - I'll dig it out
The one I now use is integrated into a library. Give me a day or two.

Nevertheless the old version should still work, so check the following:

nydbap.png


MT4 updates often change these settings.
 
foreigner said:
Works a treat! The switchable line length is a nice touch, I like yer style Rod. :)

No problem

If you want the WAV files and instructions for the proper 'click' sound, let me know.
 
FTMO Trader Scouting
Back
Top