Theory : first higher time frame (first time frame higher than the current chart time frame)second higher time frame (second time frame higher than the current chart time frame)thi...
The CSV can be found in the folder \MQL5\FilesFollowing data columns are exported:Position IDTypeSymbolVolumeOpen Date/TimeOpen PriceClose Date/TimeClose PriceTakeProfit, data not ...
Theory : first higher time frame (first time frame higher than the current chart time frame)second higher time frame (second time frame higher than the current chart time frame)thi...
Just a combining of a variable consecutive candle detector along with associated RSI levels.Interesting settings:Number of consecutive candles needed before a valid signalOverbough...
Theory : The Aroon indicator was developed by Tushar Chande in 1995.first higher time frame (first time frame higher than the current chart time frame)second higher time frame (sec...
Theory : The Aroon indicator was developed by Tushar Chande in 1995. Arron oscillator is belonging to the same family and is (even if it does not look so at the first glance) a dir...
Theory : RSI swings indicator is based on Rsi(oma) indicator and the zone where the values is floating in. You can use the usual set of averages types of Rsi(oma) calculationsimple...
Theory : There are different ways how traders are trying to determine if the market is trending or consolidating. One of the methods used is to compare standard deviation to averag...
Squeeze indicator (originally published here : ) made to display colored candles or bars (depending on the type of display you are using for your chart) on the main chart...
Theory : The "squeeze" method (indicator doing that was posted here : )is usually (due to the nature of calculation - since it uses standard deviations as a part of calculation) as...
Theory : The theory of this indicator is simple :It takes nnn RSI values specified by periods parameter and checks if all the nnn rsi values are above or bellow the required value....
Theory : use one of the 4 basic types of averages for calculation :simple moving averageexponential moving averagesmoothed moving averagelinear weighted moving averageit is normali...
Usage of the class 1. Set up an array of column descriptions in an MqlParam array.2. Open the file with the Open() function2a. When the file has a header and your are not intereste...
Theory : This is an ATR (Average True Range) that resets itself on the start of a new period. New periods are :daily (for all time frames less than dailyweekly for daily time frame...
Changing two parameters with the mouse pointerX - maximum MA period changesY - step of changing of MA periodLeft click of the mouse - the beginning/end of the change of parameters....
Theory :Parabolic SAR is calculated using high and low prices. This indicator allows you to :use any price (not just high and low)use average of the price (instead of using "raw" p...
A combination of RSI (Relative Strength Index) indicator and CCI (Commodity Channel Index) that provides a confirmation of RSI signalsYou can use the color changes as signals...
Theory : PS: the RSI used in this calculation is the one using double smoothed Wilder's EMA instead of "simple" Wilder's EMA. Results are a bit smoother (and faster) this wayUsage ...
Theory : The idea is simple : the indicator checks the slope of the (chosen type of) average. The longer the slope goes in one direction, the steeper the value of the indicator goe...
When performing some definite actions on a trade account, its state changes. Such actions include:Sending a trade request from any MQL5 application in the client terminal using Ord...
Since it seems that we can not rely only on the brute force of metatrader 5, from time to time we need to revisit the code and optimize it - for speed mainly. One example of that i...
Back to the basics : One might ask : "Why do we need the simple moving average when it is published already"?There are multiple reasons :existing sma calculations tend to have one ...
github: Intro MQL_Easy is an open source cross platform library for developing MQL4 and MQL5 applications. The purpose of this library is to make the mql development easy, safe and...
The indicator builds a sliding line based on interpolation by a polynomial of 4 degrees. The constructed line is extrapolated as a section of a given function by a sinusoid and its...
Description: Display interactive HTML graph of the account balance inside the web browser.The included template html file uses the HighCharts JavaScript library fromHighcharts make...
CPairedDealInfo is a class to reconstruct closed trades (paired in/out deals) from history sorted by close time.The class has a similar interface to CDealInfo class of the standard...
The Expert Advisor uses four iMA (Moving Average, MA) indicators from two timeframes. Two indicators with averaging periods 1 and 8 are created on the H1 timeframe and two indicato...
Basics (description by All Hull) By Alan Hull Back in 2005 when I was working on a new indicator I was temporarily sidetracked by trying to solve the problem of lag in moving avera...
Sell Relative Strength Index (SRSI or “sell gravitation index”) by Howard Wand as featured in the February 2019 issue of TASC magazine.“Traders accumulate profits trade by trade, w...
This is a script to close all market positions and/or pending orders.Optionally, you can disable Algo-Trading buttonto prevent other running experts from opening further positions ...
The script exports summary of closed trades selected between two dates grouped by each currency pair. The resulting file is CSV that can be opened/imported with any spreadsheet sof...
The standard deviation is a measure of how much a dataset differs from its mean; it tells us how dispersed the data are. A dataset that’s pretty much clumped around a single point ...
The script exports summary of closed trades selected between two dates grouped by each trading day. The resulting file is CSV that can be opened/imported with any spreadsheet softw...
IntroductionIt doesn't happen very often, but every once in awhile one needs to iterate over all of the combinations or permutations of a set of objects. Or more specifically, give...
This indicator is used to create signals for the connector. An arrow indicator can be connected to it, and when a signal appears, an arrow will be drawn.This indicator can be used ...
The code of the adviser, excluding the position opening algorithm, is copied from the advisorTrading settingsIn the Expert Advisor, you can both enable and disable the Take Profit,...
MathRand() Function The standard random number generator in MQL has a fairly limited number of possible values from 0 to 32767 (15-bits usable, 2^15 = 32,768 values).It is classifi...