Re: Something interesting please post here (Metatrader)

421
Indicator intraday volatility without delay, recommended for intraday trade zone strategies.

It is often necessary to calculate the optimal time to trade when quotes are changing rapidly (for example, c 07:00 to 21:00).

If the tool is not familiar, this may present a problem. This indicator reads all the bars on the graph and displays statistics, at what time of the day the most activity was observed. As an activity criterion chosen height of the Japanese candles (High minus Low). High activity is allocated by green bars, low - red. The indicator can be used as a filter for various strategies that require high activity of the instrument.

WmiVol

The indicator hints that the best time to trade on EURUSD is from 08:00 to 19:15 (time by server).
Tips:
If you want to get the most appropriate picture - the story of the tool to load quotes (F2);
The indicator does not work on timeframes D1 and above (it intraday);
The indicator is not redrawn;
New OnInit, OnCalculate functions are used, as recommended for MT4 600+ assemblies.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:


Re: Something interesting please post here (Metatrader)

422
The indicator can be used in your advisors to block trade or trade opening in front of the news.
Information on the news the adviser takes from the site Investing.
From the Expert Advisor, use the following function to call the indicator:

Double CheckNews = iCustom (Symbol (), 0, "urdala_news_investing (dot) com", TimeDo, TimePosle, offset, Vhigh, Vmedium, Vlow, symbols, 0,0);
If CheckNews is 0, then in the TimeDo period of minutes ahead and TimePosle minutes ago, there are no news falling under our settings.
If CheckNews is equal to 1, then news in this period of time is.
Urdala News Investing
Settings:

TimeDo - the time in minutes before the news to trigger the signal.
TimePosle - the time in minutes after the news to trigger the signal. offset - Server Time Zone of the trading terminal .
Vhigh, Vmedium, Vlow - adjust the importance of strong, medium, weak news. (True / false) symbols - currencies for display in news (empty - only current currencies). For example, if you specify here "EUR, GBP, USD", then at this chart will show only news on these three currencies.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

423
The basic principle of the indicator : Search the current timeframe (hereinafter TF) of two consecutive bars in which the first bar is less than a second distance between High and Low not more than 3 points, and the distance between Open and Close not more than 2 points.
All the necessary parameters are output to external variables, which allows you to set any values ​​that are optimal for you. If the indicator finds such a pair, then it draws two lines at a distance of 10 points and a length of 5 bars ahead. The meaning of the indicator: find the levels of entry into the market after the flat . For example, we give a graph of gold for August, September 2014 ( timeframe M5).Float indicator

Why are these conditions for the indicator chosen? The main idea for creating such an indicator was the well-known proverb: "Calm is before battle". Before the start of the normal trend of the market usually freezes. This is where you need to look for entry points to the market.
The indicator only works with bars and is not redrawn. At initialization, the information on the history of bars is calculated first, and then after the appearance of a new bar, the search for entry points begins. But history does not get moved.
Calculations of points should be carried out for 4 decimal places. The indicator itself will recalculate to the desired format for any chart.
You can choose the optimal settings for yourself. And the older the TF, the more you need to set the values ​​of HighLow and OpenClose.
Description of variables:
HighLow = 3 - Maximum distance between High and Low values (in points) of one bar;
OpenClose = 3-The maximum distance between the Open and Close values ​​(in points) of one bar;
Clr_Bull = clrBlue - The color of the signal line for the possible opening of the LONG position;
Clr_Beer = clrRed -The color of the signal line for the possible opening of the position SHORT;
BarLine = 5 - Length of the signal line (in bars). I do not recommend doing too long, since the signal can already change. The optimal value is 5-7 bars;
Distance = 3 - Distance of the line from the bars (in points);
Bar0 = 20000 - The number of bars in history (Max 20000);
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

424
The indicator of trading sessions Sessions 4 shows the 4 trading sessions : Pacific, Asian, European, American.

4 Sessions

Setting an indicator for MT4 trading sessions:
* Amendment to the UTC time for MT4 . For example, by default 2 and 3 hours to get EET (Eastern European time). UTC + 2 = EET (in winter), UTC + 3 = EET (in summer). Those. The indicator automatically switches to summer and winter time. (In the graph it will be seen that the let October 30 session, drawn on summer time, and the 31 is already in the winter)
Winter = 2 (UTC + 2 = EET)
Summer = 3 (UTC + 3 = EET)
If your broker on servers other time eg CET (Central European time), then you need to set:
winter = 1 (UTC + 1 CET =)
Summer = 2 (UTC + 2 = CET)
at the time EET CET and the transition to winter time is not canceled! UTC does not translate for winter time! This means that once set the correction to UTC and the time of the beginning and the end of sessions and there is no longer any need to adjust the settings.
Days = 5; Number of days for drawing sessions.
ShowDescription = true; ** Show signatures in sessions (Title, number of points).
ShowPips = true; ** Show the number of items passed during the session (If false, only session names will be shown).
AsBackground = true; Draw session as background. (If true - the session is painted solid, if false - draws only the contour).
ShowNextSessions = true; Show the beginning of the next (future) session.
Width = 1; Contour width (Works only if AsBackground = false).
Style = 0; Contour style (Works only if Width = 1 and AsBackground = false).
Codes style:
0 - solid line
1 - the dotted line
2 - dotted fine
3 - dot-dash
4 - dot dot dash
AsiaDesc = "Asia"; Name (signature)
AsiaColor = the Aqua; Color session
AsiaOpen = "00:00"; *** Session Start time (UTC time)
AsiaClose = "09:00"; *** end of the session time (UTC time)
* To learn amendment to UTC, you can go to time.yandex.ru and select UTC, then look to the terminal and to calculate the difference.
** In order for signatures to appear, you need to include object descriptions. (click F8> "General" tab> check mark in the "Show object descriptions"
*** The start time and the end of the sessions always write different, but usually the difference + - 1 hour.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

425
To generate signals, DC Signals uses other forex -system, which together provide a single entry point into the market.

DC Signals

DC Signals
DC Signals uses certain movement patterns between rates and the way they behave indicator 3:
BullsPower
BearsPower
DCOSNa DC Signals graph represents yellow and blue and red dots diamonds. You can also change the color of the indicator .
Parameters indicator DC Signals:
The system is very simple, so you will find only one parameter - the size of the history, which allows you to set the number of bars for which the indicator will be considered. All the main settings of the DC Signals system are in the Colors tab, there it is possible to set convenient colors, the size of the icons that are displayed on the price chart.
The practical application of
the use of very simple, stems from problems DC Signals: give clear entry point. The signal for entering the market can be the points shown in the form of diamonds: a blue diamond - we buy, a yellow diamond - we sell.
In addition, this indicator has a method for confirming signals. How does he work? White rings that frame the red dots: during the signal, the same candle should have a red dot inside the white ring. If there is a point and there is no ring, then the signal is not confirmed, the trader must conclude that the position should not be opened.
Note that the moment for exit from the market can be a signal DC Signals in the opposite direction, and, of course, signals from other indicators.

Tips: Observe the operation of the indicator and when the signal appears, do not rush to open the position. The fact is that the signal can be canceled. Analyze signals in different time frames . It is best to use H1, H4 and D1. I recommend using this generator together with the indicator fractals Fractals.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:


Re: Something interesting please post here (Metatrader)

426
The indicator identifies and marks the WRB - very long bars (Wide Range Bars) or candlesticks with long bodies (Wide Range Bodies). Since WRB-bars themselves do not represent the values of the indicator also identifies hidden gaps based on these bars. It shows in different ways filled and unfilled hidden gaps, so that only by looking at the screen, it is possible to very simply determine the current situation. Also, you can turn on the notification of the current price entry into the unfilled gap zone.

Wide Range Bars

Wide Range Bars
Input parameters:

UseWholeBars (default = false) - if true, the indicator will search for long bars (Wide Range Bars) instead of Wide Range Bodies.
WRB_LookBackBarCount (default = 3) - how many bars to use in comparison to determine WRB. The larger this number, the more rare and significant are the bars with a wide range.
WRB_WingDingsSymbol (default = 115) is a text character code for WRB. By default, a small rhombus.
HGcolor1 (default = clrDodgerBlue) - the first (and default) color of the hidden gaps rectangles.
HGcolor2 (default = clrBlue) - the second color of the rectangles of hidden gaps.
HGstyle (default = STYLE_SOLID) - line style for drawing rectangles of hidden gaps.
StartCalculationFromBar (default = 100) - the number of bars in the history of the chart that will be viewed for WRB markup and hidden gaps.
HollowBoxes (default = false) - if true, the hidden gap rectangles will be empty.
DoAlerts (default = false) - if true, then notifications will be enabled when the price enters the hidden gap zone.
These users thanked the author bilbao for the post (total 2):
SijjiN, GraniteChief
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

427
To display round levels on the graph with the price fit well Key Levels indicator , the main purpose of which - allocation levels, ending at 00, 20, 50 and 80.

Round levels - strong psychological levels, ending with two zeros in the case of a four quotation after the decimal point (for a two-digit pairs with Japanese yen) or three zeros in the case of the five-digit (three digits in pairs with JPY). Those. On the EURUSD pair, these levels will be quotations of 1.1500; 1.1600; 1,1700; 1,1800, etc., and for the EURJPY pair - 128.00; 129.00; 130.00; 131.00, etc.

In the indicator settings, the displayed levels are divided into 2 groups 00/50 and 20/80, and there is a possibility to disable one of them.
If you will be only one level of a particular group (for example, 00 of the group 00/50), the second color can be made under the background color, and then visually it will not be viden.Rassmatrivaemy indicator Key Levels designed for use in the trading platform MT4 and It has the following settings:
Show_00_50_Levels - enabling / disabling levels ending at 00 and 50.
Show_20_80_Levels - enabling / disabling levels ending at 20 and 80.
Level_00 / 50/20/80 _Color - color selection data layers.
Levels 20, 80 and 50 can also be used in their trading. The main idea of ​​their application is as follows: level 50 is half way to the next round level, which can also "slow down" the price; And levels 20 and 80 are boundary values, the overcoming of which may indicate a final breakdown or a rebound from level 00.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

428
Ultra Wizard indicator produces an internal technical analysis of market conditions on the basis of readings of indicators ( MACD , Stochastic, etc.), and outputs the coefficients of the trend with its strength.

Ultra Wizard indicator

The main variables forex indicator Ultra Wizard:

Probability - calculation of the percentage ratio for all the parameters listed below and the recommended direction of trade.
Multi-Info + - percentage effort. 13 is calculated by standard indicators of 7 timeframes .
Indice Strength - the strength of the trend. It is calculated on the movement of prices over the past 24 hours.
Currency Pair Range - the ratio of efforts in a pair. It is calculated by the correlation of 8 major currencies in 19 pairs.
MACD Indicator - trend direction for the MACD indicator
Stochastic Indicator - the trend direction of the stochastic.

Conditions for the short positions:
1) Multi-Info +: more than 75
2) Indice Strength: 0-1-2
3) Currency Pair Range: The difference between the coefficients of exchange forces (direction) of 5 or more. Example 0-5 2-8
4) LEDs 4 and 5 red, down arrow.
Conditions for the open long position:
1) Multi-Info +: more than 75
2) Indice Strength: 7-8-9
3) Currency Pair Range: The difference between the coefficients of exchange forces (direction) of 5 or more. Example 7-2 9-3
4) LEDs 4 and 5 green up arrow.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

429
GainLossInfo mt5
Indicator GainLossInfo shows the current rise or fall for all the candlesticks on the chart, which overcome a predetermined minimum threshold. The values ​​are calculated in percentages and points. This indicator can calculate the growth / fall in two modes: a simple difference in the closing price and the opening price; The difference between the current closure and the previous closure. The trader has the ability to set the minimum barriers (for points and percentages), change the calculation mode and control the font color for the displayed numbers.
Input parameters:
PercentageLimit (default = 1.0) - the minimum threshold for the display of changes in percentage points.
PipsLimit (default = 1000) is the minimum barrier for displaying changes in brokerage points.
CloseToClose (default = true) - if true, the indicator will compare the current closing level with the previous closing level, and if false - with the current opening level.
DisplayLossColor (default = Red) - the color for displaying negative changes (drops).
DisplayGainColor (default = Green) - color for displaying positive changes (growth).
DisplayDistance (default = 100) - the distance from the maximum price of the candle to the displayed value of growth / fall at the points of the broker.
MaxBars (default = 100) - the maximum number of bars for processing by the indicator. The larger this number, the slower the indicator will work.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:

Re: Something interesting please post here (Metatrader)

430
Indicator Position Size Calculator calculates the size of the position in lots using the specified levels of entry / stop loss , risk tolerance, and current market data, such as the size and currency of the account, and the price of the quote currency pair traded in relation to the account currency. The result is displayed as text in the main graph window. A trader can change many parameters, both for calculation and for display.

Position Size Calculator
Input parameters:
entryLevel (default = 0) - planned position opening price.
StopLossLevel (default = 0) is the planned price of the stop loss for the position.
TakeProfitLevel (default = 0) is the planned take-profit price. An optional parameter that is used only to calculate the profit-to-risk ratio.
Risk (default = 1) is the allowable risk in percentage points from the account balance / funds.
MoneyRisk (default = 0) is the acceptable risk in the account currency.
UseMoneyInsteadOfPercentage (default = false) - if true, then the position size will be calculated using the risk specified in the account currency, and not in percentage.
UseEquityInsteadOfBalance (default = false) - if true, then the account means will be used in the calculation, and not the account balance.
UseAskBidForEntry (default = false) - if true, then the open price of the position will be taken from the current Ask or Bid price.
DeleteLines (default = false) - if true, the entry and stop lines will be deleted when deinitialized. Otherwise, they will remain on the chart to enable the level recovery when the indicator is reloaded.
If the input parameters EntryLevel and StopLossLevel are set to zero, this indicator will try to assign them some meaningful values. You can drag the entry lines and stop-loss lines up and down directly on the chart. The value of the position size will be recalculated every tick and every time the line moves. A trader can also specify an input parameter TakeProfitLevel, to see the estimated ratio of profit to sales at risk in addition to the size of the position.
what we want: 1+1+1+1+1+1+1+1+1=9 <3
what market delivers: 1+2+8+7-4+0-5+8-4-5+1=9 :problem:


Who is online

Users browsing this forum: ChatGPT [Bot], erex, Grapeshot [Bot], Nanyuki, navid110, rudiarius, Steam1, Yandex [Bot] and 92 guests