Not Only Spread – indicator MetaTrader 4

just started
Spread, its moving average (EMA), its maximum and minimum, and ticks per second (market speed) in the Comment. The version 1.01 is made with the normal average, instead of the moving average. input int     digi=1;//digits format input int     sec=30;//seconds to refresh input bool    clear=false;//if true, clears comment after closing indicator Not Only Spread – indicator MetaTrader … Read more

Spread per hour statistics – indicator MetaTrader 5

output1
Might be useful if you want to determine hours with lowest (or highest) actual historical spreads for particular instrument and adjust your EA entries accordingly. Every line represents 8-hour period within a day starting at 00:00. Day of week is adjustable. Best approach is to launch in the Strategy Tester for desired period in ‘real … Read more

Spread and time until the next candle – indicator MetaTrader 4

e1
After adding the indicator to the chart, two text labels will appear at the right bottom corner, which display the current spread and the amount of time left until the closure of the current bar. Users can change the text color to the desired one by changing the parameters when attaching the indicator. Coordinates of … Read more

Spread statistics – indicator MetaTrader 5

Spread statistics - indicator for MetaTrader 5
The average spread for the “averaging period”. You can set the background transparency and transparency of the text. Input parameters: averaging period background background alpha text color  text alpha  The last 7 spreads are displayed and, at the end, the average spread over the period “averaging period”. Spread statistics – indicator MetaTrader 5

Record IsConnected, Spread, Stop, FreezeLevel – EA MetaTrader 4

Record IsConnected, Spread, Stop, FreezeLevel - expert for MetaTrader 4
EA is run say once every minute and writes the status of IsConnected, spread, stop and freeze level to a file. Parameters I_RecordPeriodInMinutes – In minutes, how often the spread etc. is recorded. I_InputSymbols – List of input symbols to monitor as a string, delimited by a semi-colon (;). I_BeginningOfLogFile – String used at the … Read more

Spread data collector – EA MetaTrader 5

Spread data collector - expert for MetaTrader 5
This EA collects information about the spreads and Shows the number of spreads in the specified range based on the ticks that occur each year. When the EA ends its working, it prints all statistics to the Journal, which can be useful for the Strategy Tester. When each year in the strategy tester ends. Spreads … Read more

Simple label indicator that shows Amplitude, Spread and Clock (time) – indicator MetaTrader 5

Simple label indicator that shows Amplitude, Spread and Clock (time) - indicator for MetaTrader 5
The indicator uses up to three named Label objects, with selectable color, font size, offsets, date formatting and a statistical text showing Last and Current Candle Amplitude (MinMax), Last and Current Day Amplitude, Current Tick Spread and Time Remaining for next Candle. This indicator is useful if you wanna focus more on the charts and less … Read more

QG Futures/CFD Intermarket Spread – indicator MetaTrader 4

QG Futures/CFD Intermarket Spread - indicator for MetaTrader 4
  The indicator can chart the spread between 2 instruments as a difference or as a ratio. Settings: Instrument1 –  Enter a string of first instrument exactly as mentioned by broker Instrument2 –  Enter a string of second instrument exactly as mentioned by broker Multiplier1 – A multiplying factor for first instrument Multiplier2 – A … Read more

Simple bar spread indicator as reported by the OnCalculate data – indicator MetaTrader 5

Bar Spread
This is a very simple MQL5 code for an indicator to plot the values of the spread[] data (in points) as reported by the OnCalculate event handler. These are the same spread data values that would be returned when collecting MqlRates data via the CopyRates function. Simple bar spread indicator as reported by the OnCalculate … Read more