Rejoignez notre page de fans
- Vues:
- 6501
- Note:
- Publié:
- 2015.05.22 13:04
- Mise à jour:
- 2016.11.22 07:32
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
The CandleTrend_x10 indicator shows price movement from ten different timeframes. Downward movement paints the colored squares in red, upward movement — in green. The indicator uses the values of the last closed bars.
Indicator input parameters:
//+----------------------------------------------+ //| Indicator input parameters | //+----------------------------------------------+ input ENUM_TIMEFRAMES TimeFrame0=PERIOD_H1; // Chart 1 period input ENUM_TIMEFRAMES TimeFrame1=PERIOD_H2; // Chart 2 period input ENUM_TIMEFRAMES TimeFrame2=PERIOD_H3; // Chart 3 period input ENUM_TIMEFRAMES TimeFrame3=PERIOD_H4; // Chart 4 period input ENUM_TIMEFRAMES TimeFrame4=PERIOD_H6; // Chart 5 period input ENUM_TIMEFRAMES TimeFrame5=PERIOD_H8; // Chart 6 period input ENUM_TIMEFRAMES TimeFrame6=PERIOD_H12; // Chart 7 period input ENUM_TIMEFRAMES TimeFrame7=PERIOD_D1; // Chart 8 period input ENUM_TIMEFRAMES TimeFrame8=PERIOD_W1; // Chart 9 period input ENUM_TIMEFRAMES TimeFrame9=PERIOD_MN1; // Chart 10 period input color CpColor=clrDarkOrchid; // Indicator name color input color UpColor=clrLimeGreen; // Upward movement color input color DnColor=clrRed; // Downward movement color input color ZrColor=clrGray; // No changes color input int FontSize=11; // Font size input type_font FontType=Font14; // Font type input ENUM_BASE_CORNER WhatCorner=CORNER_LEFT_LOWER; // Display corner input uint Y_=20; // Vertical coordinate input uint X_=5; // Horizontal coordinate
Fig.1. The CandleTrend_x10 indicator
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/12982

Semaphore signal indicator based on the BullsBears indicator algorithm.

The BinaryWave indicator with additional trend strength indication using colored dots based on the standard deviation algorithm.

The RSITrend_x10 indicator shows the RSI oscillator position from ten different timeframes.

The MultiRSITrend_x10 indicator shows information on current trends using the RSI oscillator position from ten different timeframes.