Join our fan page
- Views:
- 1341
- Rating:
- Published:
- 2025.01.30 05:48
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Float MetaTrader indicator — a sophisticated indicator that analyzes the previous chart history for the given currency pair and then tries to analyze the trends in the current situation. It shows where trends start and end in a separate chart window and Fibonacci retracement levels combined with DiNapoli levels on the main chart. It also displays how long ago the local high and low were detected. This indicator is available for MT4 and MT5.
The indicator repaints its levels based on all the bars it analyzes (200 by default). This means that you cannot use its detections of new peaks or troughs as trading signals as they will be revised based on how market situation develops further. This indicator should be used only for the analysis of trend swing durations and important chart levels.
Input parameters
- Float (default = 200) — the number of bars to process for trend analysis. The lower is the number means more up-to-date data but less accurate analysis.
- ObjectPrefix (default = "FI-") — prefix for chart objects for compatibility with other indicators.
- DisableDinapoli (default = false) — if true, then DiNapoli levels won't be drawn in the main chart window.
- DisableFibonacci (default = false) — if true, then Fibonacci levels won't be drawn in the main chart window.
- DrawVerticalLinesAsBackground (default = false) — if true, vertical lines for trend start and end will be set as chart background to avoid concealing the chart itself.
- SwingBorderColor (default = clrBlue) — the color of the swing zone borders.
- SwingBorderWidth (default = 1) — the width of the swing zone borders.
- SwingBorderStyle (default = STYLE_SOLID) — the line style for the swing zone borders.
- SwingLinesColor (default = clrRed) — the color of the swing lines.
- SwingLinesWidth (default = 1) — the width of the swing lines.
- SwingLinesStyle (default = STYLE_DOT) — the line style for the swing lines.
- FiboColor (default = clrGreen) — the color of the Fibonacci levels.
- FiboWidth (default = 1) — the width of the Fibonacci levels.
- FiboStyle (default = STYLE_DASH) — the line style for the Fibonacci levels.
- DinapoliColor (default = clrRed) — the color of the DiNapoli levels.
- DinapoliWidth (default = 1) — the width of the DiNapoli levels.
- DinapoliStyle (default = STYLE_DOT) — the line style for the DiNapoli levels.

Gain/Loss Info MetaTrader indicator — displays the gains and losses for all candles where the given threshold is surpassed. The values are calculated in points and percentage. The indicator can calculate gain/loss in two modes: plain candlestick Close and Open difference, and as difference between current Close and previous Close. You can set minimum change limits (for pips and percentage), change modes, and you can also control font color of the output numbers. The indicator is available for both MT4 and MT5

Fisher MetaTrader indicator — is quite a simple histogram indicator that detects the trend's direction and strength and signals about trend changes. It doesn't use any standard MT4/MT5 indicators in its code. Fisher bases its calculations on the maximum and minimum price levels from the previous periods, applying some advanced math calculations to the relations between the current price and the max/min prices. The indicator is available for both MT4 and MT5. This is a "repainting" indicator — it recalculates previous bars when a new bar arrives.

Keltner Channel (MetaTrader indicator) — is a classical technical analysis indicator developed by Chester W. Keltner in 1960. The indicator is somewhat similar to the Bollinger Bands and Envelopes. It uses three plot lines: the middle line is the 10-day simple moving average applied to the typical price ((high + low + close) / 3), the upper and the lower bands are produced by adding and subtracting the moving average of the daily price range (High and Low difference) from the middle line. This way, a volatility-based channel is built. In this version of the indicator you can modify all the parameters of the MA. The indicator is available both for MT4 and MT5 versions of the platform.

Laguerre MetaTrader indicator — a completely custom indicator that doesn't rely on the standard MT4/MT5 indicators. It shows the weighted trendline in the separate window of the chart. It can be used for simple entry and exit signals. The indicator is available for both MT4 and MT5.