money-meter
Info
The money-meter is a Indicator for MetaTrader 5 that the indicator measures money on a chart. why do we need it.
Usage
This tool is typically used for enhancing chart analysis and decision making.
Platform
This Indicator works exclusively on MetaTrader 5 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL5/Indicators folder via File ? Open Data Folder in MetaTrader 5.
How to Install and Use money-meter
1. Installation: Place your file in the MQL/Indicators folder via "Open Data Folder" and restart your terminal.
2. Loading: Find the indicator in the Navigator, drag it onto your chart, and configure the input parameters in the popup window.
3. Customization: Press Ctrl+I to open the indicator list, select your tool, and click "Properties" to change colors, levels, or visual styles.
4. Updating: Replace the old file in the Indicators folder with the new version and restart the platform to apply changes.
Frequently Asked Questions
Q: Why is my indicator not showing? A: Verify the file is in the MQL/Indicators folder, or try right-clicking the "Indicators" tree in the Navigator and clicking "Refresh."
Q: Do custom indicators slow down the platform? A: Too many complex indicators can impact performance; remove unused ones via the "Indicator List" (Ctrl+I).
Q: Can I use MT4 indicators on MT5? A: No, MQL4 and MQL5 are distinct languages; ensure the indicator is compiled specifically for your platform version.
What this tool does
the indicator measures money on a chart.
Typical Use Case
This Indicator excels in automated trading and technical analysis on MetaTrader 5.
Compatible Platform & Setup
This Indicator works on MetaTrader 5. Place the file in the MQL5/Indicators folder and restart the terminal.
Description & Settings
Related: twiggs money flow - another powerful indicator for MetaTrader 5 traders.
the indicator measures money on a chart.
why do we need it?
conventional metatrader charts are usually measured in points making it difficult to quickly convert them into money when you need to evaluate a position lot (or several lots).
Also recommended: camarilla equation modified - similar indicator with strong performance on MetaTrader 5.
of course, you can calculate in your mind or use a calculator.however, this is not always convenient. besides, traders usually set lots by rule of thumb, rather than applying certain numbers. sometimes, they even do not calculate risks for the applied volume.
what does this indicator do?
the indicator displays cost levels above and below a selected zero level.
what are cost levels?
this is the amount of funds that will be lost or added to the account if you open a position with a specified lot from the zero level.
what is a zero level?
by default, the indicator starts calculation from the current price, but if you enter the price in the zero_price parameter, it will calculate from that price.
what other parameters does the indicator have?
grid_step_value – grid step in the deposit currency
lot_size – working lot for virtual position
lot_divider – lot divider (divides volume by the specified value)
total_levels – how many levels to draw up and down
zero_price – price to be used as a zero level
progression – progression type (see below)
multiplicator – multiplier for progression
lines_color – grid lines color
lines_width – grid lines width
lines_style – grid lines style
lines_prices – displaying grid level price on the price scale
text_shift_bars – shift captions left/right according to the number of bars
how to apply this all?
select the lot_size working lot for the future position and set the grid step in money grid_step_value. the indicator shows levels when position gains the appropriate profit or loss (excluding swaps and commissions). this means, each grid level forms addition or subtraction of a specified grid_step_value to a position. each level is signed, thus, it clearly shows how much you can lose or earn if the price reaches the appropriate level.
what is lot_divider parameter needed for?
for some brokers with non-standard contracts. for example, there is one well-known broker setting a point price 100 000 times higher than what it should be. therefore, you need to specify this number as a divisor of the lot_divider volume in order to correct the calculations.
why do you need a 'progression' parameter?
by default, the indicator counts the profit/loss for one position of a specified volume, and the progression allows estimating the amount of profits/losses. consecutive additions at each grid level help to quickly assess the overall depth of the drawdown for a series of averaging positions or the total profit for pyramiding.
what progressions do we have here?
nonе – no progressions
equal – equal volume positions
linear – volumes grow linearly as a natural series
fibo – volumes grow by fibo numbers
martin – geometric progression with the 'multiplicator' multiplier
what are the indicator signals?
the indicator provides no signals. it is needed for rapid risk assessment before opening a position.
how to assess risks for already open positions?
you may use another indicator for that: smart-calculator.
how does it look like?
You may also like: chaikin volatility - excellent alternative for indicator users on MetaTrader 5.
Source Code
#property copyright "robotfx"
#property description "this code is educational. feel free to use, modify and upgrade as you wish. visit robotfx.org for professional trading tools"
#property strict
#property indicator_chart_window
#property indicator_plots 0
input double grid_step_value=100;
input double lot_size=0.1;
input double lot_divider=1;
input double total_levels=50;
input double zero_price=0;
.......
⚠ Limitations & Risk Warning
- This tool is provided for educational and testing purposes only.
- Past performance does not guarantee future results.
- Trading involves substantial risk of loss. Use on a demo account first.
- Results may vary depending on market conditions, broker, and settings.
- We recommend thorough backtesting and forward testing before using with real funds.