this indicator will plot bullish and bearish candles in separate colours.if the colours of both bullish and bearish candles are same, then sometimes it can get difficult or confusi...
this code can be used to draw triangles on chart . this is useful in program where you are detecting harmonic patterns and plotting the patterns in chart.the same principle can be ...
this is a multi timeframe dashboard scanner for rsi and stochastic.it shows both stochastic main and signals.it has input elements on the chart itself where you can enter the value...
this code can be used to take screenshot from code itself at any particular desired time.suppose one wants to know the exact conditions oaf indicators at the time when a trade was ...
this code can be used to read csv file.it reads the file row by row.for each row, it will separate the token in the string using a delimiter like underscore ( _ ). or pipe ( | ) or...
this ea demonstrates placing order and then modifying the orders to set sl and tp.then, 30 seconds after the opening the order the order is closed.this can be used in strategies wh...
this is an ea based on bollinger band crossover with prices.this also demonstrates how to ensure that lot size being used in within the limits set by a broker...
this code identifies highest high and lowest low in the neighbourhood.this code compares the high of candles with the high of the candles to its left and to its right. if the high ...
this indictor plots multiple signals based on macd depending on the following1. whether the macd is positive or negative2. whether the macd main and signal line are crossing over3....
this code is used to find the highest high and lowest low on chart between given bars.one can specify the start bar and end bar.the code will first find the candle which has highes...
this is an ea to generate signals based on rsi signal crossing the upper level or lower level.it detects when the market is overbought or oversold and then places trades....
developed by john ehlers, the rsi-based inverse fisher transform is used to help clearly define trigger points. the normal rsi indicator is calculated and adjusted so that the valu...
single currency or manual orders closing or deleting sections are very easy to understand but if you have a question you leave it at comment section. the code check for comment to ...
recursive moving average calls itself a number of times in order to reach the appropriate smoothing. for instance dema and tema indicators are recursive exponential moving averages...
adds the ability to automatically export the history of deals after running an expert advisor in the strategy tester.the file is saved in the shared terminal folder common/filesor ...
adviser-utility for copying transactions from one mt5 account or mt4 account to another mt4 account. you can copy positions between netting and hedging accounts in any combination....
exports the transaction history of the current trading account.the file is saved in the terminal folder mql4/filesor in common folder for terminals common/files.the file name is ge...
this simple, quick & dirty script code will output a csv file of all the signals' properties as reported by the functionality. with the resulting csv file opened as a spreadshe...
for an expert advisor (ea), when a new tick quote arrives, the metatrader terminal calls the default event handling function. however, there is no default event handling function f...
in many cases (computer graphics, machine learning, ta analysis) we need normalized values. smooth step is one of the possible ways to do itit belongs to the family of sigmoidal (c...
when order 0 is used, it is the same as built in stochastic / 100 (with slowing in stochastic set to 1) when order 1 is used, it is the same as the smooth step indicator when any h...
in the process of developing a program for copying positions between accounts, it was necessary to develop essentially the same code for mt5 and mt4. the differences were only in t...
this is a very simple indicator. it plots a channel with a constant range of twice the step-size parameter value.the range is broken when the low quote price breaks the upper level...
a simple adaptive grid expert advisor for meta trader 4. works on all time frames and most common forex symbols. something you want to change or add in the code example, you are as...